Fix api duplicated headers

Simó Albert i Beltran 2021-05-26 19:26:08 +02:00
parent cf50f2b839
commit f9a96461a5
1 changed files with 3 additions and 3 deletions

View File

@ -20,7 +20,7 @@ server {
location /json { location /json {
alias /api/api/static/templates/header.json; alias /api/api/static/templates/header.json;
add_header Content-Type application/json; default_type application/json;
index header.json; index header.json;
expires max; expires max;
log_not_found off; log_not_found off;
@ -29,7 +29,7 @@ server {
location /header/html { location /header/html {
alias /api/api/static/templates/header.html; alias /api/api/static/templates/header.html;
add_header Content-Type text/html; default_type text/html;
index header.html; index header.html;
expires max; expires max;
log_not_found off; log_not_found off;
@ -38,7 +38,7 @@ server {
location /header/html/nextcloud { location /header/html/nextcloud {
alias /api/api/static/templates/header_nextcloud.html; alias /api/api/static/templates/header_nextcloud.html;
add_header Content-Type text/html; default_type text/html;
index header_nextcloud.html index header_nextcloud.html
expires max; expires max;
log_not_found off; log_not_found off;