Index
joshstock.in
/
4901462
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?
90
18 Jan 2021 10:28
7e0a3b4
Update nginx configuration
Josh Stockin
1
2
4
G
Blob @
joshstock.in
/
nginx
/
prod
/
www.conf
text/plain
178 bytes
download raw
1
server
{
2
listen
443
ssl http2
;
3
listen [
::
]
:
443
ssl http2
;
4
server_name
"~^www.(?<domain>.*joshstock.in)$"
;
# www redirect to non-www
5
return
301
https
:
//$domain$request_uri;
6
}
7