mirror of
https://github.com/cloudpanel-io/vhost-templates.git
synced 2026-05-18 16:33:30 +08:00
.
This commit is contained in:
61
v2-http3/ReverseProxy/ReverseProxy
Executable file
61
v2-http3/ReverseProxy/ReverseProxy
Executable file
@@ -0,0 +1,61 @@
|
||||
server {
|
||||
listen 80;
|
||||
listen [::]:80;
|
||||
listen 443 quic;
|
||||
listen 443 ssl;
|
||||
listen [::]:443 quic;
|
||||
listen [::]:443 ssl;
|
||||
http2 on;
|
||||
http3 off;
|
||||
{{ssl_certificate_key}}
|
||||
{{ssl_certificate}}
|
||||
{{server_name}}
|
||||
{{root}}
|
||||
|
||||
{{nginx_access_log}}
|
||||
{{nginx_error_log}}
|
||||
|
||||
if ($scheme != "https") {
|
||||
rewrite ^ https://$host$uri permanent;
|
||||
}
|
||||
|
||||
location @reverse_proxy {
|
||||
proxy_pass {{reverse_proxy_url}};
|
||||
proxy_http_version 1.1;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
proxy_set_header X-Forwarded-Server $host;
|
||||
proxy_set_header X-Real-IP $remote_addr;
|
||||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||
proxy_set_header X-Forwarded-Proto $scheme;
|
||||
proxy_set_header Host $host;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "Upgrade";
|
||||
proxy_pass_request_headers on;
|
||||
proxy_max_temp_file_size 0;
|
||||
proxy_connect_timeout 900;
|
||||
proxy_send_timeout 900;
|
||||
proxy_read_timeout 900;
|
||||
proxy_buffer_size 128k;
|
||||
proxy_buffers 4 256k;
|
||||
proxy_busy_buffers_size 256k;
|
||||
proxy_temp_file_write_size 256k;
|
||||
}
|
||||
|
||||
{{settings}}
|
||||
|
||||
include /etc/nginx/global_headers;
|
||||
|
||||
add_header Cache-Control no-transform;
|
||||
|
||||
index index.html;
|
||||
|
||||
location ^~ /.well-known {
|
||||
auth_basic off;
|
||||
allow all;
|
||||
try_files $uri @reverse_proxy;
|
||||
}
|
||||
|
||||
location / {
|
||||
try_files $uri @reverse_proxy;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user