personal-servers/nginx.conf

35 lines
715 B
Nginx Configuration File
Raw Normal View History

2022-05-03 16:10:33 +00: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;
}
2022-06-27 20:18:19 +00:00
error_page 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
2022-05-03 16:10:33 +00:00
}
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;
}
2022-06-27 20:18:19 +00:00
error_page 403 404 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
2022-05-03 16:10:33 +00:00
}
2022-06-29 00:08:00 +00:00