Initial commit
This commit is contained in:
13
nginx-reverse-proxy/Dockerfile
Normal file
13
nginx-reverse-proxy/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM nginx:1.19.9
|
||||
|
||||
# default conf for proxy services
|
||||
COPY ./default.conf /etc/nginx/conf.d/default.conf
|
||||
|
||||
# NOT FOUND response
|
||||
COPY ./backend-not-found.html /var/www/html/backend-not-found.html
|
||||
|
||||
# Proxy and SSL configurations
|
||||
COPY ./includes/ /etc/nginx/includes/
|
||||
|
||||
# Proxy SSL certificates
|
||||
COPY ./ssl/ /etc/ssl/certs/nginx/
|
||||
Reference in New Issue
Block a user