28 lines
657 B
Plaintext
28 lines
657 B
Plaintext
##################################################
|
|
# 공통 설정
|
|
##################################################
|
|
|
|
# 웹 루트 (호스트 기준)
|
|
WEB_ROOT=./www
|
|
|
|
# UID / GID (호스트 사용자)
|
|
PUID=1000
|
|
PGID=1000
|
|
|
|
##################################################
|
|
# MariaDB 설정 (cafe24 10G 유사)
|
|
##################################################
|
|
|
|
MYSQL_ROOT_PASSWORD=rootpassword
|
|
MYSQL_DATABASE=firstgarden
|
|
MYSQL_USER=firstgarden
|
|
MYSQL_PASSWORD=firstgarden_pw
|
|
|
|
# 포트 (필요 시 외부 접근)
|
|
MYSQL_PORT=3306
|
|
|
|
##################################################
|
|
# 타임존
|
|
##################################################
|
|
TZ=Asia/Seoul
|