Index
joshstock.in
/
fe619bd
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?
158
14 Jan 2023 23:37
5aaa26a
Website rewrite
Josh Stockin
1
1
1
G
Blob @
joshstock.in
/
nginx
/
test
/
conf.d
/
default_404.conf
text/plain
193 bytes
download raw
1
server
{
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