mirror of
https://github.com/linuxserver/docker-swag.git
synced 2025-03-09 15:49:18 -04:00
7 lines
193 B
Plaintext
7 lines
193 B
Plaintext
#!/usr/bin/with-contenv bash
|
||
|
||
# copy default config files if they don't exist
|
||
if [[ ! -f /config/nginx/proxy.conf ]]; then
|
||
cp /defaults/nginx/proxy.conf.sample /config/nginx/proxy.conf
|
||
fi
|