refactor(web): Serve static assets to //web/homepage

Shuffles around the nginx locations that are served to ensure that all
static content will be served from tazj.in/static (including for the
blog).
This commit is contained in:
Vincent Ambo 2020-02-09 00:01:07 +00:00
parent e6002f95cd
commit 39854d71b2
3 changed files with 10 additions and 28 deletions

View file

@ -6,7 +6,7 @@
writeText, writeShellScriptBin, nginx, lib,
# website content
blog
blog, website
}:
let
@ -44,15 +44,13 @@ let
server {
listen 8080 default_server;
root ${blog.rendered};
location /static {
alias ${blog.static}/;
}
root ${website};
${oldRedirects}
location / {
location /blog {
alias ${blog.rendered};
if ($request_uri ~ ^/(.*)\.html$) {
return 302 /$1;
}