personal-servers/reverse_proxy/nginx.conf

194 lines
4.4 KiB
Nginx Configuration File
Raw Normal View History

2022-05-03 16:10:33 +00:00
server {
listen 8080;
listen [::]:8080;
2024-07-21 00:10:05 +00:00
server_name faaso-prod.ralsina.me;
location / {
proxy_pass http://rocky.tail20c16.ts.net:8888;
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Accept-Encoding gzip;
}
error_page 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
}
server {
listen 8080;
listen [::]:8080;
2024-07-17 15:27:34 +00:00
server_name code.ralsina.me;
location / {
2024-07-21 00:10:05 +00:00
proxy_pass http://mindy.tail20c16.ts.net:8088;
2024-07-17 15:27:34 +00:00
proxy_set_header X-Forwarded-Host $http_host;
proxy_set_header Host $host;
2024-07-17 17:52:44 +00:00
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_set_header Accept-Encoding gzip;
2024-07-17 15:27:34 +00:00
}
error_page 500 502 503 504 /custom_50x.html;
location = /custom_50x.html {
root /usr/share/nginx/html;
internal;
}
}
server {
listen 8080;
listen [::]:8080;
2022-05-03 16:10:33 +00:00
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;
2024-07-21 00:10:05 +00:00
server_name nicolino.ralsina.me;
2024-07-27 23:56:54 +00:00
server_name crycco.ralsina.me;
2024-07-11 20:09:30 +00:00
location / {
2024-07-21 00:10:05 +00:00
proxy_pass http://pinky.tail20c16.ts.net:8080;
2024-07-11 20:09:30 +00:00
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.tail20c16.ts.net:8086;
2024-06-26 14:05:15 +00:00
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.tail20c16.ts.net:3000;
2022-05-03 16:10:33 +00:00
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.tail20c16.ts.net:7777;
2024-04-30 16:17:10 +00:00
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.tail20c16.ts.net:7777;
2024-04-30 16:45:59 +00:00
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';
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.tail20c16.ts.net:8082;
2022-07-16 17:28:47 +00:00
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-05-16 15:40:14 +00:00
server {
listen 8080;
listen [::]:8080;
server_name snips.ralsina.me;
location / {
proxy_pass http://pinky.tail20c16.ts.net:8091 ;
2023-05-16 15:40:14 +00:00
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/;
}