Compare commits

...

3 Commits

Author SHA1 Message Date
Roberto Alsina f888300c8e Add port fwd for faas 2022-07-16 14:28:47 -03:00
Roberto Alsina 92011375fd no more 2022-06-28 22:05:51 -03:00
Roberto Alsina 89a5eaecfa proxy rss server 2022-06-28 21:08:00 -03:00
1 changed files with 17 additions and 1 deletions

View File

@ -20,7 +20,6 @@ server {
listen [::]:8080;
server_name git.ralsina.me;
server_name got.ralsina.me;
location / {
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:3000;
@ -32,3 +31,20 @@ server {
internal;
}
}
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;
}
}