Index
joshstock.in
/
58ecc9e
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
/
notls-redirect.conf
text/plain
156 bytes
download raw
1
server
{
2
listen
80
;
3
listen [
::
]
:
80
;
4
server_name
"~^(?<domain>.*joshstock.in)$"
;
# redirect non-https to https
5
return
301
https
:
//$domain$request_uri;
6
}
7