You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
440 B
23 lines
440 B
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; |
|
} |
|
}
|
|
|