personal-servers/nginx.conf

54 lines
1.2 KiB
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;
}
2022-06-27 17:18:19 -03:00
error_page 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
2022-05-03 13:10:33 -03: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 17:18:19 -03: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 13:10:33 -03:00
}
2022-06-28 21:08:00 -03:00
2022-07-16 14:28:47 -03:00
server {
listen 8080;
listen [::]:8080;
server_name faas.ralsina.me;
2022-07-19 14:50:07 -03:00
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
2022-07-16 14:28:47 -03:00
location / {
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8082;
proxy_set_header X-Forwarded-Host $http_host;
}
error_page 403 404 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
}