File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -216,6 +216,7 @@ ENV SE_BIND_HOST="false" \
216
216
SE_SUPERVISORD_PID_FILE="/tmp/supervisord.pid" \
217
217
SE_SUPERVISORD_AUTO_RESTART="true" \
218
218
SE_SUPERVISORD_START_RETRIES="5" \
219
+ SE_SUPERVISORD_UNIX_SERVER_PASSWORD="secret" \
219
220
SE_LOG_TIMESTAMP_FORMAT="%Y-%m-%d %H:%M:%S,%3N" \
220
221
SE_LOG_LEVEL="INFO" \
221
222
SE_HTTP_LOGS="false" \
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ minprocs=200 ; (min. avail process descriptors;
15
15
file=/tmp/supervisor.sock ; (the path to the socket file)
16
16
chmod=0700
17
17
username=%(ENV_SEL_USER)s
18
- password=secret
18
+ password=%(ENV_SE_SUPERVISORD_UNIX_SERVER_PASSWORD)s
19
19
20
20
; the below section must remain in the config file for RPC
21
21
; (supervisorctl/web interface) to work, additional interfaces may be
@@ -26,7 +26,7 @@ supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface
26
26
[supervisorctl]
27
27
serverurl=unix:///tmp/supervisor.sock ; use a unix:// URL for a unix socket
28
28
username=%(ENV_SEL_USER)s
29
- password=secret
29
+ password=%(ENV_SE_SUPERVISORD_UNIX_SERVER_PASSWORD)s
30
30
31
31
[include]
32
32
files = /etc/supervisor/conf.d/*.conf
You can’t perform that action at this time.
0 commit comments