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 / prod / conf.d / default_404.conf

text/plain215 bytesdownload raw
1server {
2 listen 443 ssl http2;
3 listen [::]:443 ssl http2;
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