All checks were successful
Build Docker / Build Docker (push) Successful in 1m10s
24 lines
665 B
Plaintext
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;
|
|
}
|
|
} |