Index
joshstock.in
/
d2c0b95
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?
152
23 Jul 2022 20:43
f53e6c1
Update location matching for default 404 pages
Josh Stockin
1
3
1
G
Blob @
joshstock.in
/
nginx
/
test
/
conf.d
/
default_404.conf
text/plain
179 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
location
/
{
7
return
404
;
8
}
9
}
10