mirror of
https://github.com/linuxserver/docker-swag.git
synced 2024-10-01 01:35:49 -04:00
13 lines
312 B
Plaintext
13 lines
312 B
Plaintext
#!/usr/bin/with-contenv bash
|
||
|
||
# samples are removed on init by the nginx base
|
||
|
||
# copy new samples
|
||
if [[ -d /defaults/nginx/proxy-confs/ ]]; then
|
||
find /defaults/nginx/proxy-confs/ \
|
||
-maxdepth 1 \
|
||
-name "*.conf.sample" \
|
||
-type f \
|
||
-exec cp "{}" /config/nginx/proxy-confs/ +
|
||
fi
|