Index
joshstock.in
/
e654c77
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?
38
02 Jan 2020 16:42
07297ad
Streamline nginx configuration updates
Josh Stockin
1
12
0
N
Blob @
joshstock.in
/
nginx
/
prod
/
notls.conf
text/plain
264 bytes
download raw
1
server
{
2
listen
80
;
3
listen [
::
]
:
80
;
4
server_name joshstock
.
in
;
# redirect non-https to https
5
return
301
https
:
//joshstock.in$request_uri;
6
}
7
server
{
8
listen
80
;
9
listen [
::
]
:
80
;
10
server_name git
.
joshstock
.
in
;
11
return
301
https
:
//git.joshstock.in$request_uri;
12
}
13