|
|
|
@ -1,3 +1,4 @@
|
|
|
|
|
with import ../../../../modules/tailscale/default.nix;
|
|
|
|
|
let host = "jichan.org"; in {
|
|
|
|
|
services.nginx.virtualHosts."www.${host}" = {
|
|
|
|
|
forceSSL = true;
|
|
|
|
@ -11,13 +12,28 @@ let host = "jichan.org"; in {
|
|
|
|
|
error_page 502 /502.html;
|
|
|
|
|
'';
|
|
|
|
|
locations = {
|
|
|
|
|
"/" = {
|
|
|
|
|
proxyPass = with import ../../../../modules/tailscale/default.nix; "http://${elnuhub}:3334";
|
|
|
|
|
proxyWebsockets = true;
|
|
|
|
|
};
|
|
|
|
|
"/".proxyPass = "http://${elnuhub}:3334";
|
|
|
|
|
"/502.html".root = "${./502}";
|
|
|
|
|
"/logo.svg".root = "${./502}";
|
|
|
|
|
"/missing.min.css".root = "${../shared/502}";
|
|
|
|
|
|
|
|
|
|
# Formerly tatoeba.elnu.com
|
|
|
|
|
# https://git.elnu.com/ElnuDev/tatoeba-api
|
|
|
|
|
"/api/tatoeba/" = {
|
|
|
|
|
proxyPass = "http://${elnuhub}:3001";
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
rewrite ^/api/tatoeba/(.*) /$1 break;
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
# Formerly images.elnu.com
|
|
|
|
|
# https://git.elnu.com/ElnuDev/image-api
|
|
|
|
|
"/api/images/" = {
|
|
|
|
|
proxyPass = "http://${elnuhub}:3002";
|
|
|
|
|
extraConfig = ''
|
|
|
|
|
rewrite ^/api/images/(.*) /$1 break;
|
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|