-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy path.env.example
193 lines (183 loc) · 4.97 KB
/
.env.example
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# # # # # # # # # # # # # # # # # # #
# Vijos Environment Variables #
# #
# Just replace `_` to `-` in #
# command-line parameter name, #
# uppercase them and add a prefix #
# `VJ_`. #
# #
# Only commonly used args are #
# listed here. #
# # # # # # # # # # # # # # # # # # #
#===================================
# --listen
# Server listening address
#===================================
# Default: http://127.0.0.1:8888
# Example:
# unix:/var/run/vj4.sock
# http://0.0.0.0:80
#
# ./data/run is
# /var/run/vj4 in the container
# You should expose ports manually
# if you are using port listening
#===================================
# VJ_LISTEN=unix:/var/run/vj4/web.sock
#===================================
# --listen-owner
# Owner of the socket when server
# is listening to a unix socket.
#===================================
# Default: www-data
#===================================
# VJ_LISTEN_OWNER=www-data
#===================================
# --listen-group
# Group of the socket when server
# is listening to a unix socket.
#===================================
# Default: www-data
#===================================
# VJ_LISTEN_GROUP=www-data
#===================================
# --listen-mode
# File mode of the socket when
# server is listening to a
# unix socket.
#===================================
# Default: 660
#===================================
# VJ_LISTEN_MODE=660
#===================================
# --prefork
# Number of prefork workers
#===================================
# Default: 1
#===================================
# VJ_PREFORK=4
#===================================
# --smtp-host
# SMTP Host
#===================================
# SMTP host of mail service
#===================================
# VJ_SMTP_HOST=
#===================================
# --smtp-port
# SMTP Port
#===================================
# Default: 465
# Port of SMTP Host
#===================================
# VJ_SMTP_PORT=465
#===================================
# --smtp-user
# SMTP User
#===================================
# User used to connect to SMTP Host
#===================================
# VJ_SMTP_USER=
#===================================
# --smtp-password
# SMTP Password
#===================================
# Password of SMTP User
#===================================
# VJ_SMTP_PASSWORD=
#===================================
# --mail-from
# Mail From
#===================================
# `From` field of outgoing emails
#===================================
# VJ_MAIL_FROM=
#===================================
# --db-host
# MongoDB Host
#===================================
# Default: localhost
# Use "mongodb" if you are using
# default docker-compose.yml
#===================================
VJ_DB_HOST=mongodb
#===================================
# --db-port
# MongoDB Port
#===================================
# Default: 27017
#===================================
# VJ_DB_PORT=27017
#===================================
# --db-name
# Database name in MongoDB
#===================================
# Default: test
#===================================
VJ_DB_NAME=vijos4
#===================================
# --db-username
# Username for MongoDB Auth
#===================================
# VJ_DB_USERNAME=
#===================================
# --db-password
# Password for MongoDB Auth
#===================================
# VJ_DB_PASSWORD=
#===================================
# --db-auth-source
# Auth source db in MongoDB
# Uses DB_NAME if you leave it empty
# here.
#===================================
# VJ_DB_AUTH_SOURCE=
#===================================
# --mq-host
# AMQP Host
#===================================
# Default: localhost
# Use "rabbitmq" if you are using
# default docker-compose.yml
#===================================
VJ_MQ_HOST=rabbitmq
#===================================
# --mq-vhost
# AMQP vhost
#===================================
# Default: /
#===================================
# VJ_MQ_VHOST=/
#===================================
# --ip-header
# HTTP header which is used by proxy
# to pass real user IP
#===================================
# VJ_IP_HEADER=X-Real-IP
#===================================
# --url-prefix
# URL prefix
#===================================
# Default: https://vijos.org
#===================================
# VJ_URL_PREFIX=http://127.0.0.1:8888
#===================================
# --cdn-prefix
# CDN prefix
#===================================
# Default: /
#===================================
# VJ_CDN_PREFIX=/
#===================================
# --default-locale
#===================================
# Default: zh_CN
#===================================
# VJ_DEFAULT_LOCALE=zh_CN
#===================================
# VJ_CMDLINE_FLAGS
# This is only for boolean flags
# like `--pretty` `--no-debug`.
# Split with spaces.
#===================================
# VJ_CMDLINE_FLAGS=--no-syslog --static