add a crap ton of aliases
This commit is contained in:
parent
1f77bd54f3
commit
b247f9491f
|
@ -79,7 +79,6 @@
|
||||||
users.users.ryan = {
|
users.users.ryan = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
extraGroups = [ "wheel" "docker" ];
|
extraGroups = [ "wheel" "docker" ];
|
||||||
packages = [ "browsh" ];
|
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.paperlesspassthrough = {
|
users.users.paperlesspassthrough = {
|
||||||
|
@ -154,6 +153,12 @@
|
||||||
locations."/".proxyPass = "http://localhost:3004";
|
locations."/".proxyPass = "http://localhost:3004";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."bit.beepboop.systems" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
globalRedirect = "bitwarden.beepboop.systems";
|
||||||
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts."bitwarden.beepboop.systems" = {
|
services.nginx.virtualHosts."bitwarden.beepboop.systems" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
|
@ -175,12 +180,16 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts."ntfy.beepboop.systems" = {
|
services.nginx.virtualHosts."calendar.beepboop.systems" = {
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
enableACME = true;
|
enableACME = true;
|
||||||
locations."/" = {
|
globalRedirect = "radicale.beepboop.systems";
|
||||||
proxyPass = "http://127.0.0.1:3500";
|
};
|
||||||
};
|
|
||||||
|
services.nginx.virtualHosts."cal.beepboop.systems" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
globalRedirect = "radicale.beepboop.systems";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.nginx.virtualHosts."skillissue.agency" = {
|
services.nginx.virtualHosts."skillissue.agency" = {
|
||||||
|
@ -208,6 +217,18 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."roundcube.beepboop.systems" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
globalRedirect = "cube.beepboop.systems";
|
||||||
|
};
|
||||||
|
|
||||||
|
services.nginx.virtualHosts."mail.beepboop.systems" = {
|
||||||
|
forceSSL = true;
|
||||||
|
enableACME = true;
|
||||||
|
globalRedirect = "cube.beepboop.systems";
|
||||||
|
};
|
||||||
|
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
enable = true;
|
enable = true;
|
||||||
allowedTCPPorts = [ 5232 55555 22 80 443 ];
|
allowedTCPPorts = [ 5232 55555 22 80 443 ];
|
||||||
|
|
Loading…
Reference in New Issue