Index
joshstock.in
/
05d74a2
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
/
prod
/
sites-enabled
/
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