Disable SSL v3.

master
Nick Sergeant 2015-04-06 22:40:59 -04:00
parent bc77c5c3e9
commit e72caf9836
2 changed files with 3 additions and 0 deletions

View File

@ -22,6 +22,7 @@ upstream backend_snipt {
server_name www.{{ pillar.hostname }};
ssl on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_certificate /etc/certs/{{ pillar.hostname }}.crt;
ssl_certificate_key /etc/certs/{{ pillar.hostname }}.key;
@ -32,6 +33,7 @@ upstream backend_snipt {
server_name {{ pillar.hostname }} *.{{ pillar.hostname }};
ssl on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_certificate /etc/certs/{{ pillar.hostname }}.crt;
ssl_certificate_key /etc/certs/{{ pillar.hostname }}.key;

View File

@ -5,6 +5,7 @@ POSTMARK_API_KEY = ''
RAVEN_CONFIG = { 'dsn': '' }
SECRET_KEY = 'changeme'
SESSION_COOKIE_SECURE = False
SSLIFY_DISABLE = False
STRIPE_SECRET_KEY = ''
USE_HTTPS = False