Faaso-prod and nicolino static site

This commit is contained in:
Roberto Alsina 2024-07-20 21:10:05 -03:00
parent f9e8faa88a
commit 3de9039037

View File

@ -2,10 +2,30 @@ server {
listen 8080; listen 8080;
listen [::]:8080; listen [::]:8080;
server_name faaso-prod.ralsina.me;
location / {
proxy_pass http://rocky.tail20c16.ts.net:8888;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Accept-Encoding gzip;
}
error_page 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
}
server {
listen 8080;
listen [::]:8080;
server_name code.ralsina.me; server_name code.ralsina.me;
location / { location / {
proxy_pass http://mindy.ralsina.github.beta.tailscale.net:8088; proxy_pass http://mindy.tail20c16.ts.net:8088;
proxy_set_header X-Forwarded-Host $http_host; proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade; proxy_set_header Upgrade $http_upgrade;
@ -25,9 +45,10 @@ server {
server_name home.ralsina.me; server_name home.ralsina.me;
server_name ralsina.me; server_name ralsina.me;
server_name faaso.ralsina.me; server_name faaso.ralsina.me;
server_name nicolino.ralsina.me;
location / { location / {
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8080; proxy_pass http://pinky.tail20c16.ts.net:8080;
proxy_set_header X-Forwarded-Host $http_host; proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header Host $host; proxy_set_header Host $host;
} }