2023-07-29 10:19:42 +08:00
|
|
|
|
server{
|
|
|
|
|
|
listen 80;
|
|
|
|
|
|
server_name hapi.hncore.net;
|
|
|
|
|
|
location / {
|
|
|
|
|
|
proxy_pass http://127.0.0.1:5000;
|
|
|
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
|
|
proxy_set_header Connection keep-alive;
|
|
|
|
|
|
proxy_set_header Host $http_host;
|
|
|
|
|
|
proxy_cache_bypass $http_upgrade;
|
|
|
|
|
|
proxy_read_timeout 600; # <20><>
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
server{
|
|
|
|
|
|
listen 80;
|
|
|
|
|
|
server_name juip.com;
|
|
|
|
|
|
rewrite ^/(.*) http://www.juip.com/$1 permanent;
|
|
|
|
|
|
}
|
|
|
|
|
|
|