2022-05-03 16:10:33 +00:00
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
listen [::]:8080;
|
|
|
|
|
|
|
|
server_name home.ralsina.me;
|
2024-07-17 00:11:56 +00:00
|
|
|
server_name ralsina.me;
|
2024-07-11 20:09:30 +00:00
|
|
|
server_name faaso.ralsina.me;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8080;
|
|
|
|
proxy_set_header X-Forwarded-Host $http_host;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
}
|
|
|
|
error_page 500 502 503 504 /custom_50x.html;
|
|
|
|
location = /custom_50x.html {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
internal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-26 14:05:15 +00:00
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
listen [::]:8080;
|
|
|
|
|
|
|
|
server_name links.ralsina.me;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8086;
|
|
|
|
proxy_set_header X-Forwarded-Host $http_host;
|
2024-07-11 17:29:35 +00:00
|
|
|
proxy_set_header Host $host;
|
2024-06-26 14:05:15 +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;
|
2024-07-11 17:29:35 +00:00
|
|
|
proxy_set_header Host $host;
|
2022-05-03 16:10:33 +00:00
|
|
|
}
|
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
|
|
|
|
2024-04-30 16:17:10 +00:00
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
listen [::]:8080;
|
|
|
|
|
|
|
|
server_name gotify.ralsina.me;
|
2024-04-30 16:45:59 +00:00
|
|
|
|
|
|
|
add_header 'Access-Control-Allow-Origin' '*';
|
|
|
|
add_header 'Access-Control-Allow-Headers' '*';
|
|
|
|
add_header 'Access-Control-Allow-Credentials' 'true';
|
|
|
|
add_header 'Allow' 'POST, GET, OPTIONS';
|
|
|
|
|
|
|
|
if ($request_method = 'OPTIONS' ) {
|
|
|
|
return 200;
|
|
|
|
}
|
2024-04-30 16:17:10 +00:00
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:7777;
|
|
|
|
proxy_set_header X-Forwarded-Host $http_host;
|
2024-07-11 17:29:35 +00:00
|
|
|
proxy_set_header Host $host;
|
2024-04-30 16:17:10 +00:00
|
|
|
}
|
2024-04-30 16:45:59 +00:00
|
|
|
|
|
|
|
location /stream {
|
|
|
|
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:7777;
|
|
|
|
proxy_set_header Host $host;
|
|
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
|
|
proxy_set_header Connection "Upgrade";
|
|
|
|
}
|
|
|
|
|
|
|
|
error_page 403 404 500 502 503 504 /custom_50x.html;
|
|
|
|
location = /custom_50x.html {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
internal;
|
|
|
|
}
|
2024-04-30 16:17:10 +00:00
|
|
|
}
|
|
|
|
|
2022-07-16 17:28:47 +00:00
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
listen [::]:8080;
|
|
|
|
|
|
|
|
server_name faas.ralsina.me;
|
|
|
|
|
2022-07-19 17:50:07 +00:00
|
|
|
add_header 'Access-Control-Allow-Origin' '*';
|
2023-02-08 17:32:47 +00:00
|
|
|
add_header 'Access-Control-Allow-Headers' '*';
|
2022-07-19 17:50:07 +00:00
|
|
|
add_header 'Access-Control-Allow-Credentials' 'true';
|
2023-06-04 15:49:47 +00:00
|
|
|
add_header 'Allow' 'POST, GET, OPTIONS';
|
|
|
|
|
|
|
|
if ($request_method = 'OPTIONS' ) {
|
|
|
|
return 200;
|
|
|
|
}
|
2022-07-19 17:50:07 +00:00
|
|
|
|
2022-07-16 17:28:47 +00: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;
|
|
|
|
}
|
|
|
|
}
|
2022-09-29 18:58:47 +00:00
|
|
|
|
2023-05-16 15:40:14 +00:00
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
listen [::]:8080;
|
|
|
|
|
|
|
|
server_name snips.ralsina.me;
|
|
|
|
|
|
|
|
location / {
|
|
|
|
proxy_pass http://pinky.ralsina.github.beta.tailscale.net:8091 ;
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-16 15:53:36 +00:00
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
listen [::]:8080;
|
|
|
|
|
|
|
|
server_name covers.ralsina.me;
|
|
|
|
return 301 https://ralsina.me/stories/covers/;
|
|
|
|
}
|
|
|
|
|
2023-06-05 13:22:00 +00:00
|
|
|
|
|
|
|
server {
|
|
|
|
listen 8080;
|
|
|
|
listen [::]:8080;
|
|
|
|
|
|
|
|
server_name nombres.ralsina.me;
|
|
|
|
return 301 https://ralsina.me/stories/nombres/;
|
|
|
|
}
|