Index
joshstock.in
/
e89b100
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?
147
14 Jul 2022 10:13
92c9fd4
Rename nginx conf directory sites-enabled/ to servers/
Josh Stockin
1
6
0
G
Blob @
joshstock.in
/
nginx
/
prod
/
servers
/
www-redirect.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