faaso server

This commit is contained in:
Roberto Alsina 2024-07-11 17:09:30 -03:00
parent c36ea0287e
commit 03724dea21

View File

@ -16,6 +16,24 @@ server {
}
}
server {
listen 8080;
listen [::]:8080;
server_name faaso.ralsina.me;
location / {
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8080;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header Host $host;
}
error_page 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
}
server {
listen 8080;
listen [::]:8080;