54 lines
1.2 KiB
Nginx Configuration File
54 lines
1.2 KiB
Nginx Configuration File
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;
|
|
}
|
|
error_page 500 502 503 504 /custom_50x.html;
|
|
location = /custom_50x.html {
|
|
root /usr/share/nginx/html;
|
|
internal;
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
error_page 403 404 500 502 503 504 /custom_50x.html;
|
|
location = /custom_50x.html {
|
|
root /usr/share/nginx/html;
|
|
internal;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 8080;
|
|
listen [::]:8080;
|
|
|
|
server_name faas.ralsina.me;
|
|
|
|
add_header 'Access-Control-Allow-Origin' '*';
|
|
add_header 'Access-Control-Allow-Credentials' 'true';
|
|
|
|
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;
|
|
}
|
|
}
|