mirror of
https://github.com/linuxserver/docker-swag.git
synced 2025-01-22 20:51:11 -05: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
|