WIP: Switch to NixOS #5

Draft
FunctionalHacker wants to merge 1349 commits from nix into main
Showing only changes of commit 699cbbcc16 - Show all commits

View file

@ -3,10 +3,16 @@ server {
listen [::]:80; listen [::]:80;
server_name localhost; server_name localhost;
location / { location / {
root /korhonen.cc; root /korhonen.cc;
index index.html; index index.html;
}
location ~* \.(?:css|js|jpg|jpeg|gif|png|ico|cur|gz|svg|svgz|mp4|ogg|ogv|webm|htc)$ {
expires 1M;
access_log off;
add_header Cache-Control "public";
}
}
# Use hugo 404 page # Use hugo 404 page
error_page 404 /404.html; error_page 404 /404.html;