personal-servers/nginx.conf

90 lines
2.0 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' '*';
2023-02-08 14:32:47 -03:00
add_header 'Access-Control-Allow-Headers' '*';
2022-07-19 14:50:07 -03:00
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;
}
}
2023-04-12 11:39:25 -03:00
# server {
# listen 8080;
# listen [::]:8080;
2023-04-12 11:39:25 -03:00
# server_name hass.ralsina.me;
2023-04-12 11:39:25 -03:00
# location / {
# proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8123;
# proxy_set_header X-Forwarded-Host $http_host;
# WebSocket support
2023-04-12 11:39:25 -03:00
# proxy_http_version 1.1;
# proxy_set_header Upgrade $http_upgrade;
# proxy_set_header Connection "upgrade";
# }
# }
2023-04-11 17:39:03 -03:00
# server {
# listen 8080;
# listen [::]:8080;
# server_name social.ralsina.me;
# location / {
# proxy_pass http://pinky.ralsina.github.beta.tailscale.net:3003;
# proxy_set_header X-Forwarded-Host $http_host;
# # WebSocket support
# proxy_http_version 1.1;
# proxy_set_header Upgrade $http_upgrade;
# proxy_set_header Connection "upgrade";
# }
# }
2022-11-11 16:45:08 -03:00