25 lines
470 B
Nginx Configuration File
25 lines
470 B
Nginx Configuration File
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;
|
|
server_name got.ralsina.me;
|
|
|
|
location / {
|
|
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:3000;
|
|
proxy_set_header X-Forwarded-Host $http_host;
|
|
}
|
|
}
|