personal-servers/nginx.conf

24 lines
440 B
Nginx Configuration File
Raw Normal View History

2022-05-03 13:10:33 -03:00
server {
listen 8080;
listen [::]:8080;
server_name home.ralsina.me;
location / {
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8080;
proxy_set_header X-Forwarded-Host $http_host;
}
}
server {
listen 8080;
listen [::]:8080;
server_name git.ralsina.me;
location / {
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:3000;
proxy_set_header X-Forwarded-Host $http_host;
}
}