diff options
Diffstat (limited to 'nginx/nginx.conf')
-rw-r--r-- | nginx/nginx.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf new file mode 100644 index 0000000..f1704d9 --- /dev/null +++ b/nginx/nginx.conf @@ -0,0 +1,36 @@ +worker_processes auto; +pid /run/nginx.pid; +include /etc/nginx/modules-enabled/*.conf; + +events { + worker_connections 1024; +} + +http { + upstream prod { + server prod:4000; + } + + server { + listen 80; + + server_name localhost 127.0.0.1; + + location /uploads { + root /uploads; + } + + location / { + proxy_pass http://prod; + + proxy_http_version 1.1; + + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header Host $http_host; + proxy_redirect default; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + } + } +} |