Index
joshstock.in
/
d044bc5
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
8
0
N
Blob @
joshstock.in
/
nginx
/
prod
/
www.conf
text/plain
194 bytes
download raw
1
server
{
2
listen
80
;
3
listen [
::
]
:
80
;
4
listen
443
ssl http2
;
5
listen [
::
]
:
443
ssl http2
;
6
server_name www
.
joshstock
.
in
;
# www redirect to non-www
7
return
301
https
:
//joshstock.in$request_uri;
8
}
9