at runtime?

This commit is contained in:
Didier Slof 2023-02-19 14:54:43 +01:00
parent 01539c63ea
commit 00dc612a28
Signed by: didier
GPG key ID: 01E71F18AA4398E5
2 changed files with 6 additions and 4 deletions

View file

@ -1,4 +1,8 @@
#!/bin/sh
# copy server files
cp -r /custom/vhost.d/* /etc/nginx/vhost.d
cp -r /custom/conf.d/* /etc/nginx/conf.d
cp -r /custom/conf.d/* /etc/nginx/conf.d
# copy error files
cp -r /custom/error_pages/* /usr/share/nginx/html

View file

@ -9,6 +9,4 @@ COPY 90-copy-files.sh /docker-entrypoint.d
# Copy nginx files
COPY config/vhost.d /custom/vhost.d
COPY config/conf.d /custom/conf.d
# copy error pages
COPY config/error_pages/* /usr/share/nginx/html/
COPY config/error_pages /custom/error_pages