-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #79 from internetstandards/routing
Fix frontend internal webserver for routing non-# urls
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
server { | ||
listen 80; | ||
listen [::]:80; | ||
server_name localhost; | ||
|
||
location / { | ||
root /usr/share/nginx/html; | ||
try_files $uri $uri/ /index.html; | ||
} | ||
|
||
# make static files return proper 404 if not found instead of falling back on index.html | ||
# and apply some caching | ||
location ~* \.(webmanifest|xml|html|jpeg|jpg|gif|png|svg|ico)$ { | ||
expires 1d; | ||
root /usr/share/nginx/html; | ||
} | ||
|
||
# make static files return proper 404 if not found instead of falling back on index.html | ||
# and apply heavy caching because these files should be hashed anyways | ||
location ~* \.(js|css)$ { | ||
expires 1y; | ||
root /usr/share/nginx/html; | ||
} | ||
} |