From 7905252d246e507cac894c7e58edbc1e3df360e9 Mon Sep 17 00:00:00 2001 From: Simponic Date: Fri, 22 Apr 2022 14:52:26 -0600 Subject: Deployment final --- nginx/Dockerfile | 3 +++ nginx/nginx.conf | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 nginx/Dockerfile create mode 100644 nginx/nginx.conf (limited to 'nginx') diff --git a/nginx/Dockerfile b/nginx/Dockerfile new file mode 100644 index 0000000..4909c28 --- /dev/null +++ b/nginx/Dockerfile @@ -0,0 +1,3 @@ +FROM nginx:alpine + +COPY ./nginx.conf /etc/nginx/nginx.conf 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"; + } + } +} -- cgit v1.2.3-70-g09d2