change dockerfile

This commit is contained in:
hillerliao
2022-04-27 00:07:40 +08:00
parent 4ae1d74e33
commit 680963c537
6 changed files with 74 additions and 28 deletions

8
flask.conf Normal file
View File

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