Skip to content

Commit

Permalink
build(nginx): add in missing semicolons (sigh)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispymm committed Nov 28, 2024
1 parent 2fbc4fe commit 3477a16
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/nginx-staging.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ server {
location ~* \.(html)$ {
etag off;
if_modified_since off;
add_header Cache-Control "no-cache"
add_header Cache-Control "no-cache";
}

location ~* \.(ico|jpg|jpeg|png|js|css|woff|woff2)$ {
add_header Cache-Control "public max-age=31536000 immutable"
add_header Cache-Control "public max-age=31536000 immutable";
}

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

0 comments on commit 3477a16

Please sign in to comment.