Add port fwd for faas

This commit is contained in:
Roberto Alsina 2022-07-16 14:28:47 -03:00
parent 92011375fd
commit f888300c8e
1 changed files with 16 additions and 0 deletions

View File

@ -32,3 +32,19 @@ server {
}
}
server {
listen 8080;
listen [::]:8080;
server_name faas.ralsina.me;
location / {
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8082;
proxy_set_header X-Forwarded-Host $http_host;
}
error_page 403 404 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
}