mirror of
https://github.com/linuxserver/docker-swag.git
synced 2024-10-01 01:35:49 -04:00
13 lines
420 B
Plaintext
13 lines
420 B
Plaintext
#!/usr/bin/with-contenv bash
|
||
|
||
# copy default config files if they don't exist
|
||
if [[ ! -f /config/nginx/error_pages.conf ]]; then
|
||
cp /defaults/nginx/error_pages.conf.sample /config/nginx/error_pages.conf
|
||
fi
|
||
if [[ ! -f /config/nginx/proxy.conf ]]; then
|
||
cp /defaults/nginx/proxy.conf.sample /config/nginx/proxy.conf
|
||
fi
|
||
if [[ ! -f /config/www/502.html ]]; then
|
||
cp /defaults/www/502.html /config/www/502.html
|
||
fi
|