summarylogtreecommitdiffstats
path: root/nginx_https
diff options
context:
space:
mode:
Diffstat (limited to 'nginx_https')
-rw-r--r--nginx_https19
1 files changed, 19 insertions, 0 deletions
diff --git a/nginx_https b/nginx_https
new file mode 100644
index 000000000000..e862df326dbb
--- /dev/null
+++ b/nginx_https
@@ -0,0 +1,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/;
+ }
+}