2023-04-23 10:15:38 +00:00
|
|
|
location ^~ /test {
|
|
|
|
proxy_pass http://1panel.cloud/;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
|
|
proxy_set_header REMOTE-HOST $remote_addr;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "upgrade";
|
2023-10-08 07:12:15 +00:00
|
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
2023-04-23 10:15:38 +00:00
|
|
|
proxy_http_version 1.1;
|
|
|
|
|
|
|
|
add_header X-Cache $upstream_cache_status;
|
|
|
|
}
|