feat: docker nginx script.

This commit is contained in:
a.bouhuolia
2021-09-21 10:34:39 +02:00
parent 8691929516
commit 20f36284ad
6 changed files with 17719 additions and 9 deletions

View File

@@ -0,0 +1,14 @@
# environment variables
# WEB_REVERSE_PROXY_PORT ${WEB_REVERSE_PROXY_PORT}
server {
listen 80 default_server;
location / {
proxy_pass http://node:${WEB_REVERSE_PROXY_PORT};
}
location /.well-known/acme-challenge/ {
root /var/www/letsencrypt/;
log_not_found off;
}
}