custom config outside server block

This commit is contained in:
bunkerity 2021-03-08 11:53:11 +01:00
parent f052a25168
commit 8386dd4a2a
2 changed files with 2 additions and 2 deletions

View File

@ -1226,7 +1226,7 @@ The number of days before rotated files are deleted.
Custom configurations files (ending with .conf suffix) can be added in some directory inside the container :
- /http-confs : http context
- /server-confs : server context
- /pre-server-confs : before server context (add map or upstream config)
- /pre-server-confs : before server context (add map or upstream config for example)
You just need to use a volume like this :
```shell

View File

@ -50,7 +50,7 @@ if [ "$MULTISITE" = "yes" ] ; then
replace_in_file "${NGINX_PREFIX}server.conf" "%PRE_SERVER_CONF%" "include /pre-server-confs/*.conf;\ninclude /pre-server-confs/${1}/*.conf;"
else
replace_in_file "${NGINX_PREFIX}server.conf" "%SERVER_CONF%" "include /server-confs/*.conf;"
replace_in_file "${NGINX_PREFIX}server.conf" "%PRE_SERVER_CONF%" "include /pre-server-confs/*.conf;\ninclude /pre-server-confs/${1}/*.conf;"
replace_in_file "${NGINX_PREFIX}server.conf" "%PRE_SERVER_CONF%" "include /pre-server-confs/*.conf;"
fi
# max body size