Index
joshstock.in
/
99539ce
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?
106
05 Mar 2021 00:28
99539ce
Update nginx prod configuration
Josh Stockin
1
4
10
G
Blob @
joshstock.in
/
nginx
/
prod
/
notls.conf
text/plain
184 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