2023-02-03 23:06:00 +01:00
|
|
|
{ inputs, config, pkgs, ... }:
|
2023-02-04 01:14:39 +01:00
|
|
|
{
|
2023-02-03 23:06:00 +01:00
|
|
|
security.acme = {
|
|
|
|
acceptTerms = true;
|
|
|
|
defaults.email = "jade@schrottkatze.de";
|
|
|
|
certs = {
|
2023-02-04 01:14:39 +01:00
|
|
|
"vw.schrottkatze.de" = {
|
2023-02-03 23:06:00 +01:00
|
|
|
group = "nginx";
|
|
|
|
keyType = "rsa2048";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
services.nginx = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
recommendedGzipSettings = true;
|
|
|
|
recommendedOptimisation = true;
|
|
|
|
recommendedProxySettings = true;
|
|
|
|
recommendedTlsSettings = true;
|
|
|
|
|
|
|
|
virtualHosts = {
|
2023-02-04 01:14:39 +01:00
|
|
|
"vw.schrottkatze.de" = {
|
2023-02-03 23:06:00 +01:00
|
|
|
forceSSL = true;
|
|
|
|
enableACME = true;
|
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://localhost:8812"; #changed the default rocket port due to some conflict
|
|
|
|
proxyWebsockets = true;
|
|
|
|
};
|
|
|
|
locations."/notifications/hub" = {
|
|
|
|
proxyPass = "http://localhost:3012";
|
|
|
|
proxyWebsockets = true;
|
|
|
|
};
|
|
|
|
locations."/notifications/hub/negotiate" = {
|
|
|
|
proxyPass = "http://localhost:8812";
|
|
|
|
proxyWebsockets = true;
|
|
|
|
};
|
|
|
|
};
|
2023-02-04 01:14:39 +01:00
|
|
|
"wolke.schrottkatze.de" = {
|
|
|
|
forceSSL = true;
|
|
|
|
enableACME = true;
|
|
|
|
};
|
2023-02-03 23:06:00 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|