From 9c79113c776461548740f060d09fbc846c4ebabc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=5E=CB=B5=E2=97=95=CF=89=E2=97=95=CB=B5=5E?= Date: Thu, 26 Dec 2019 14:52:10 -0500 Subject: [PATCH] appseed api --- nginx/appseed-app.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 nginx/appseed-app.conf diff --git a/nginx/appseed-app.conf b/nginx/appseed-app.conf new file mode 100644 index 0000000..77c5e45 --- /dev/null +++ b/nginx/appseed-app.conf @@ -0,0 +1,10 @@ +server { + listen 80; + + location / { + proxy_pass http://localhost:5000/; + proxy_set_header Host $host; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } + +} \ No newline at end of file