Index

joshstock.in / master

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
15814 Jan 2023 23:375aaa26aWebsite rewriteJosh Stockin111G

Blob @ joshstock.in / nginx / test / conf.d / default_404.conf

text/plain193 bytesdownload raw
1server {
2 listen 80;
3 listen [::]:80;
4 root /var/www/josh;
5 error_page 404 /static/error/404.html; location = /static/error/404.html {}
6 location / {
7 return 404;
8 }
9}
10