File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ services:
68
68
- INVITE_SERVICE_URL
69
69
- JICOFO_AUTH_USER
70
70
- MICROSOFT_API_APP_CLIENT_ID
71
+ - NGINX_RESOLVER
71
72
- P2P_USE_STUN_TURN
72
73
- PEOPLE_SEARCH_URL
73
74
- RESOLUTION
Original file line number Diff line number Diff line change 26
26
27
27
client_max_body_size 0 ;
28
28
29
+ resolver {{ .Env.NGINX_RESOLVER | default "127.0.0.11" }};
30
+
29
31
include /etc/nginx/mime.types;
30
32
types {
31
33
# add support for wasm MIME type, that is required by specification and it is not part of default mime.types file
Original file line number Diff line number Diff line change @@ -52,9 +52,7 @@ if [[ $DISABLE_HTTPS -ne 1 ]]; then
52
52
fi
53
53
54
54
# copy config files
55
- if [[ ! -f /config/nginx/nginx.conf ]]; then
56
- cp /defaults/nginx.conf /config/nginx/nginx.conf
57
- fi
55
+ tpl /defaults/nginx.conf > /config/nginx/nginx.conf
58
56
59
57
if [[ ! -f /config/nginx/meet.conf ]]; then
60
58
tpl /defaults/meet.conf > /config/nginx/meet.conf
You can’t perform that action at this time.
0 commit comments