feat: Update site and add proxy for the install.sh script
All checks were successful
Build Docker / Build Docker (push) Successful in 1m10s

This commit is contained in:
2025-09-04 21:59:58 +10:00
parent bb3c6868f8
commit 31dc32bdd0
6 changed files with 69 additions and 47 deletions

View File

@@ -2,6 +2,16 @@ server {
listen 80;
listen [::]:80;
server_name localhost;
# Proxy /install.sh to the raw script location
location = /install.sh {
proxy_pass "https://git.woodburn.au/nathanwoodburn/firewalletbrowser/raw/branch/main/install.sh";
proxy_ssl_server_name on;
proxy_set_header Host git.woodburn.au;
proxy_set_header X-Real-IP $remote_addr;
}
location / {
root /usr/share/nginx/html;
index index.html index.htm;