mirror of
https://shylinux.com/x/ContextOS
synced 2025-04-25 08:48:06 +08:00
29 lines
614 B
Plaintext
29 lines
614 B
Plaintext
ssl_session_timeout 30m;
|
|
ssl_session_cache shared:SSL:1m;
|
|
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
client_max_body_size 100m;
|
|
client_body_timeout 300s;
|
|
|
|
client_body_in_file_only clean;
|
|
client_body_buffer_size 16K;
|
|
client_body_temp_path /tmp/nginx/client_body_temp;
|
|
|
|
|
|
proxy_set_header X-HOST $scheme://$http_host;
|
|
proxy_set_header X-Real-Port $remote_port;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:9020;
|
|
}
|
|
|
|
location /space/ {
|
|
proxy_pass http://127.0.0.1:9020;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
}
|
|
|