Skip to content
Snippets Groups Projects
Commit e3ad4118 authored by Bob Mottram's avatar Bob Mottram
Browse files

Fix duplicate warnings

parent 4a2be8af
No related branches found
No related tags found
No related merge requests found
......@@ -694,7 +694,7 @@ function peertube_setup_web {
echo ' # It might be nice to compress JSON, but leaving that out to protect against potential';
echo ' # compression+encryption information leak attacks like BREACH.';
echo ' gzip on;';
echo ' gzip_types text/css text/html application/javascript;';
echo ' gzip_types text/css application/javascript;';
echo ' gzip_vary on;';
echo '';
echo ' # Enable HSTS'
......@@ -773,7 +773,7 @@ function peertube_setup_web {
echo ' # It might be nice to compress JSON, but leaving that out to protect against potential';
echo ' # compression+encryption information leak attacks like BREACH.';
echo ' gzip on;';
echo ' gzip_types text/css text/html application/javascript;';
echo ' gzip_types text/css application/javascript;';
echo ' gzip_vary on;';
echo '';
echo ' access_log /dev/null;';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment