nginx research results, no way this works

This commit is contained in:
2023-01-28 21:49:59 -06:00
parent 87833551a6
commit 4afbbb2887
5 changed files with 59 additions and 8 deletions

9
flask.conf Normal file
View File

@@ -0,0 +1,9 @@
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;
}
}