Files
asimonson1125.github.io/flask.conf
Andrew Simonson 580bcb704f added nginx with supervisor
so much suffering occurred here.  Let's hope it was worth it.
2023-01-29 11:02:30 -06:00

10 lines
206 B
Plaintext

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;
}
}