Files
firewallet-site/default.conf
Nathan Woodburn 31dc32bdd0
All checks were successful
Build Docker / Build Docker (push) Successful in 1m10s
feat: Update site and add proxy for the install.sh script
2025-09-04 21:59:58 +10:00

24 lines
665 B
Plaintext

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;
try_files $uri $uri.html /index.html;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}