-
Notifications
You must be signed in to change notification settings - Fork 22
nginx.md
Shirasawa edited this page Aug 26, 2021
·
1 revision
location / {
proxy_pass http://127.0.0.1:25565/; # 目标地址
proxy_set_header Host $host;
proxy_http_version 1.1;
proxy_cache_bypass $http_upgrade;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
add_header X-Cache $upstream_cache_status;
add_header Cache-Control no-cache;
}