Index

joshstock.in / 5aaa26a

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

Latest Commit

{#}TimeHashSubjectAuthor#(+)(-)GPG?
15814 Jan 2023 23:375aaa26aWebsite rewriteJosh Stockin185G

Blob @ joshstock.in / nginx / test / servers / root.conf

text/plain888 bytesdownload raw
1server {
2 listen 80;
3 listen [::]:80;
4 server_name ~.;
5 rewrite ^/(.*)/$ /$1 permanent; # truncate forward slash
6 root /var/www/josh;
7 error_page 404 /static/error/404.html; location = /static/error/404.html {}
8 location = / {
9 index index.html;
10 }
11 location = /favicon.ico {
12 try_files /static/favicon.ico =404;
13 }
14 location / {
15 try_files $uri $uri.xml $uri.html =404;
16 }
17 location = /resume {
18 rewrite /resume /static/resume.pdf;
19 }
20 location = /josh.gpg {
21 rewrite /josh.gpg /static/josh.gpg;
22 }
23 location ~ /static/(.*) {
24 try_files $uri $uri.html @s3static;
25 }
26 set $bucket "joshstock.in/static";
27 location @s3static {
28 proxy_intercept_errors on;
29 proxy_redirect off;
30 add_header Cache-Control max-age=31536000;
31 proxy_pass https://$bucket/$1;
32 }
33}
34