Index

joshstock.in / e2bc780

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
15524 Jul 2022 22:45d2c0b95Update nginx configurationJosh Stockin1140G

Blob @ joshstock.in / nginx / prod / servers / start.conf

text/plain373 bytesdownload raw
1server {
2 listen 443 ssl http2;
3 listen [::]:443 ssl http2;
4 server_name start.joshstock.in;
5 rewrite ^/(.*)/$ /$1 permanent; # truncate forward slash
6 root /var/www/startpage;
7 error_page 404 /error-404.html; location = /error-404.html {}
8 location = / {
9 index index.html;
10 }
11 location / {
12 try_files $uri $uri.html =404;
13 }
14}
15