diff options
Diffstat (limited to 'support/nginx')
-rw-r--r-- | support/nginx/peertube | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/support/nginx/peertube b/support/nginx/peertube index 0720dbd97..5d97c0cf1 100644 --- a/support/nginx/peertube +++ b/support/nginx/peertube | |||
@@ -44,7 +44,11 @@ server { | |||
44 | gzip_types text/css text/html application/javascript; | 44 | gzip_types text/css text/html application/javascript; |
45 | gzip_vary on; | 45 | gzip_vary on; |
46 | 46 | ||
47 | add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"; | 47 | # Enable HSTS |
48 | # Tells browsers to stick with HTTPS and never visit the insecure HTTP | ||
49 | # version. Once a browser sees this header, it will only visit the site over | ||
50 | # HTTPS for the next 2 years: (read more on hstspreload.org) | ||
51 | #add_header Strict-Transport-Security "max-age=63072000; includeSubDomains; preload"; | ||
48 | 52 | ||
49 | access_log /var/log/nginx/peertube.example.com.access.log; | 53 | access_log /var/log/nginx/peertube.example.com.access.log; |
50 | error_log /var/log/nginx/peertube.example.com.error.log; | 54 | error_log /var/log/nginx/peertube.example.com.error.log; |