-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.env-example
More file actions
52 lines (32 loc) · 1.62 KB
/
.env-example
File metadata and controls
52 lines (32 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
####################################################################################
# GLOBAL Setup
####################################################################################
# 默认你把项目放在家目录下面了
# 注意如果设置开机启动(rc.local)这里必须指定绝对路径,这是因为 rc.local 是用 root 运行的
GLOBAL_APP_PATH=~/docker-lnmp/
# 这里的时区不会更改 php.ini 配置里的时区,如果更改为其他时区注意检查 php.ini 的 timezone
GLOBAL_TIME_ZONE=Asia/Shanghai
GLOBAL_CHANGE_SOURCE=true
####################################################################################
# PHP Setup
####################################################################################
# php版本选择, 可选(php73,php74,php8)
PHP_VERSION=php73
####################################################################################
# HTTP Setup
####################################################################################
HTTP_PORT=80
HTTPS_PORT=443
####################################################################################
# Mysql Setup
####################################################################################
MYSQL_PASSWORD=DockerLNMP
MYSQL_PORT=3366
####################################################################################
# Redis Setup
####################################################################################
REDIS_PORT=6399
####################################################################################
# MONGO Setup
####################################################################################
MONGO_PORT=27017