Index

joshstock.in / 2ae4db8

Source for serving and static templating/compiling of https://joshstock.in.

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
9018 Jan 2021 10:287e0a3b4Update nginx configurationJosh Stockin128G

Blob @ joshstock.in / nginx / prod / notls.conf

text/plain156 bytesdownload raw
1server {
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