Wednesday October 13, 2021; 5:05 PM EDT
- With the new head-level attribute urlBlogWebsite, I am able to use Nginx to serve my Drummer outlines from my own domain, acting as a proxy to the S3 bucket. #
- location /outlines/ {#
- proxy_http_version 1.1;#
- proxy_redirect off;#
- proxy_set_header Host "oldschool.scripting.com";#
- proxy_set_header X-Real-IP $remote_addr;#
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;#
- proxy_intercept_errors on;#
- proxy_pass http://oldschool.scripting.com/oevl/;#