Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Missed the one in the CI folder
Browse files Browse the repository at this point in the history
  • Loading branch information
wchrisjohnson committed Aug 11, 2016
1 parent 4a9b203 commit 901bc42
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion ci/nginx.conf.HCP
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ http {

include mime.types;
default_type application/octet-stream;
keepalive_timeout 65;
keepalive_timeout 70;
proxy_read_timeout 200;
sendfile off;
tcp_nopush on;
Expand All @@ -33,8 +33,18 @@ http {
'' close;
}

ssl_session_cache shared:SSL:10m;
ssl_session_timeout 10m;

server {
listen 80;
listen 443 ssl;

ssl_certificate /etc/secrets/console-cert;
ssl_certificate_key /etc/secrets/console-cert-key;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_ciphers HIGH:!aNULL:!MD5;

client_max_body_size 50M;

location /pp/ {
Expand Down

0 comments on commit 901bc42

Please sign in to comment.