forked from x/ContextOS
30 lines
588 B
Plaintext
30 lines
588 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;
|
|
|
|
location / {
|
|
include header.conf;
|
|
proxy_pass http://contexts;
|
|
}
|
|
|
|
location /space/ {
|
|
include header.conf;
|
|
proxy_pass http://contexts;
|
|
proxy_set_header Connection "upgrade";
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
}
|
|
|
|
location /x/ {
|
|
include header.conf;
|
|
proxy_pass http://contexts_repos;
|
|
}
|