mirror of
https://github.com/bunkerity/bunkerized-nginx
synced 2023-12-13 21:30:18 +01:00
Merge branch 'pre_server_confs' of https://github.com/thelittlefireman/bunkerized-nginx into dev
This commit is contained in:
commit
f052a25168
3 changed files with 5 additions and 0 deletions
|
@ -1226,6 +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)
|
||||
|
||||
You just need to use a volume like this :
|
||||
```shell
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
%PRE_SERVER_CONF%
|
||||
|
||||
server {
|
||||
%FASTCGI_PATH%
|
||||
%SERVER_CONF%
|
||||
|
|
|
@ -47,8 +47,10 @@ cp /opt/confs/site/* "$NGINX_PREFIX"
|
|||
replace_in_file "${NGINX_PREFIX}server.conf" "%MAIN_LUA%" "include ${NGINX_PREFIX}main-lua.conf;"
|
||||
if [ "$MULTISITE" = "yes" ] ; then
|
||||
replace_in_file "${NGINX_PREFIX}server.conf" "%SERVER_CONF%" "include /server-confs/*.conf;\ninclude /server-confs/${1}/*.conf;"
|
||||
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;"
|
||||
fi
|
||||
|
||||
# max body size
|
||||
|
|
Loading…
Reference in a new issue