summaryrefslogtreecommitdiff
path: root/ansible/nginx.conf.j2
diff options
context:
space:
mode:
Diffstat (limited to 'ansible/nginx.conf.j2')
-rw-r--r--ansible/nginx.conf.j213
1 files changed, 0 insertions, 13 deletions
diff --git a/ansible/nginx.conf.j2 b/ansible/nginx.conf.j2
deleted file mode 100644
index a890814..0000000
--- a/ansible/nginx.conf.j2
+++ /dev/null
@@ -1,13 +0,0 @@
-server {
- listen 80;
- ec2_user {{ server_ip }};
-
- location / {
- proxy_pass http://unix:/opt/image_processor/myapp.sock;
- proxy_set_header Host $host;
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header X-Forwarded-Proto $scheme;
- }
-}
-