added nginx with supervisor

so much suffering occurred here.  Let's hope it was worth it.
This commit is contained in:
2023-01-29 11:02:30 -06:00
parent ad42da1736
commit 580bcb704f
4 changed files with 60 additions and 8 deletions

9
flask.conf Normal file
View File

@@ -0,0 +1,9 @@
server {
listen 8080;
location / {
proxy_pass http://localhost:5000/;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}