feat(MOMO): add hedgedoc.dryb.org and md.dryb.org to nginx

This commit is contained in:
Jacob Bachmann 2025-10-12 17:24:00 +02:00
parent 4d706beb5d
commit 9b95f4de65
Signed by: bchmnn
GPG key ID: 732A612DAD28067D

View file

@ -2,6 +2,27 @@
{
services.nginx = {
enable = true;
virtualHosts."hedgedoc.dryb.org" = {
addSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8009";
};
};
virtualHosts."md.dryb.org" = {
addSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "301 https://hedgedoc.dryb.org$request_uri";
};
};
virtualHosts."miniflux.dryb.org" = {
addSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8008";
};
};
virtualHosts."syncthing.dryb.org" = {
addSSL = true;
enableACME = true;
@ -16,13 +37,6 @@
proxyPass = "http://127.0.0.1:8005";
};
};
virtualHosts."miniflux.dryb.org" = {
addSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:8008";
};
};
};
networking.firewall = {