Index
joshstock.in
/
71dd216
Source for serving and static templating/compiling of https://joshstock.in.
Download
|
Refs
|
Commit Log
|
Files
|
README
|
LICENSE
Latest Commit
{#}
Time
Hash
Subject
Author
#
(+)
(-)
GPG?
150
23 Jul 2022 20:39
71dd216
Use custom stylized 404 page in default 404 return
Josh Stockin
1
2
0
G
Blob @
joshstock.in
/
nginx
/
test
/
conf.d
/
default_404.conf
text/plain
152 bytes
download raw
1
server
{
2
listen
80
;
3
listen [
::
]
:
80
;
4
root
/var/www/josh;
5
error_page
404
/error-404.html;
location =
/error-404.html
{}
6
return
404
;
7
}
8