mirror of https://github.com/1Panel-dev/1Panel
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.
16 lines
570 B
16 lines
570 B
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 $http_connection;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_http_version 1.1;
|
|
add_header X-Cache $upstream_cache_status;
|
|
add_header Cache-Control no-cache;
|
|
proxy_ssl_server_name off;
|
|
proxy_ssl_name $proxy_host;
|
|
}
|