Compare commits

..

No commits in common. "32bba7ff9a658e10b1f62871403b68e1dc8d5eb5" and "57cd79eb551cebd5215275a46977efb41cfae253" have entirely different histories.

View File

@ -31,14 +31,6 @@
ports = [55555]; ports = [55555];
}; };
services.endlessh.enable = true;
services.endlessh.port = 22;
services.vaultwarden.enable = true;
services.vaultwarden.config = {
DOMAIN = "https://bitwarden.beepboop.systems";
SIGNUPS_ALLOWED = false;
};
networking.usePredictableInterfaceNames = false; networking.usePredictableInterfaceNames = false;
services.nixosmail.enable = true; services.nixosmail.enable = true;
@ -77,6 +69,12 @@
root = "/var/www/beepboop.systems"; root = "/var/www/beepboop.systems";
}; };
services.nginx.virtualHosts."cloud.beepboop.systems" = {
forceSSL = true;
enableACME = true;
locations."/".proxyPass = "http://localhost:4000";
};
services.nginx.virtualHosts."git.beepboop.systems" = { services.nginx.virtualHosts."git.beepboop.systems" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
@ -113,7 +111,7 @@
security.acme = { security.acme = {
acceptTerms = true; acceptTerms = true;
email = "nickforanick@protonmail.com"; defaults.email = "nickforanick@protonmail.com";
}; };
services.roundcube = { services.roundcube = {
@ -130,18 +128,9 @@
''; '';
}; };
networking.firewall = { services.vaultwarden.enable = true;
enable = true;
allowedTCPPorts = [ 5232 55555 22 80 443 ];
};
# services.paperless = { # Open ports in the firewall.
# enable = true; networking.firewall.enable = false;
# passwordFile = "/etc/paperless-password"; networking.firewall.allowedTCPPorts = [ 5232 55555 80 443 ];
# port = 3004;
# address = "localhost";
# extraConfig = {
# PAPERLESS_URL = "https://paperless.beepboop.systems";
# };
# };
} }