ipv6-test-backend/nginx/conf.d/test.conf

24 lines
709 B
Plaintext
Raw Permalink Normal View History

2024-08-17 10:07:15 +08:00
server {
listen 80;
listen [::]:80;
2024-08-17 19:12:18 +08:00
server_name test.ipv6test.online;
2024-08-17 10:07:15 +08:00
gzip on;
gzip_min_length 1k;
gzip_buffers 4 16k;
gzip_http_version 1.1;
gzip_comp_level 9;
gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/javascript application/json;
gzip_disable "MSIE [1-6]\.";
gzip_vary on;
location / {
2024-08-17 13:37:45 +08:00
proxy_pass http://ipv6-test-backend:8080/;
2024-08-18 21:18:47 +08:00
proxy_set_header Connection $http_connection;
proxy_set_header Upgrade $http_upgrade;
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 X-Forwarded-Proto $scheme;
2024-08-17 10:07:15 +08:00
}
}