Skip to content

Commit

Permalink
revert whitespace changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak committed Sep 24, 2024
1 parent faddfe7 commit d2853e5
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions nginx/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
server {

listen 80;
listen 80;

# Location block for index.html with a 6-hour cache
location = /index.html {
root /usr/share/nginx/html;
add_header Cache-Control "public, max-age=21600, must-revalidate";
try_files $uri $uri/ /index.html;
}
# Location block for index.html with a 6-hour cache
location = /index.html {
root /usr/share/nginx/html;
add_header Cache-Control "public, max-age=21600, must-revalidate";
try_files $uri $uri/ /index.html;
}

# Location block for all other files with a 7-day cache
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
add_header Cache-Control "public, max-age=604800, must-revalidate";
}
# Location block for all other files with a 7-day cache
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
add_header Cache-Control "public, max-age=604800, must-revalidate";
}


error_page 500 502 503 504 /50x.html;
error_page 500 502 503 504 /50x.html;

location = /50x.html {
root /usr/share/nginx/html;
}
location = /50x.html {
root /usr/share/nginx/html;
}
}

0 comments on commit d2853e5

Please sign in to comment.