summarylogtreecommitdiffstats
path: root/nginx_https
blob: e862df326dbb2f1c9692018a00b60d13c75a7746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# nginx https unchunker
server {
    listen       27701 ssl;
    types_hash_max_size 4096;

    ssl_certificate      <cert.pem>;
    ssl_certificate_key  <cert-key.pem>;

    ssl_session_cache    shared:SSL:1m;
    ssl_session_timeout  5m;

    ssl_ciphers  HIGH:!aNULL:!MD5;
    ssl_prefer_server_ciphers  on;

    location / {
      proxy_http_version 1.0;
      proxy_pass         http://0.0.0.0:27702/;
    }
}