mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
307 B
9 lines
307 B
6 months ago
|
|
||
|
add_header Access-Control-Allow-Origin *;
|
||
|
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
|
||
|
|
||
|
location / {
|
||
|
proxy_pass http://127.0.0.1:8000; # 这里是指向 gunicorn host 的服务地址
|
||
|
proxy_set_header Host $host;
|
||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
}
|