Index
joshstock.in
/
b09cd7d
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?
124
13 Oct 2021 20:04
5a74171
Update nginx configurations
Josh Stockin
1
6
0
G
Blob @
joshstock.in
/
nginx
/
test
/
sites-enabled
/
www.conf
text/plain
152 bytes
download raw
1
server
{
2
listen
80
;
3
listen [
::
]
:
80
;
4
server_name
"~^www.(?<domain>.*localhost)$"
;
# www redirect to non-www
5
return
301
http
:
//$domain$request_uri;
6
}
7