calculate the key (install calckey)

This commit is contained in:
Schrottkatze 2023-05-06 03:19:19 +02:00
parent f9f9db7891
commit 79834e2953
5 changed files with 85 additions and 8 deletions

View file

@ -27,6 +27,10 @@
group = "nginx";
keyType = "rsa4096";
};
"ck.katzen.cafe" = {
group = "nginx";
keyType = "rsa4096";
};
};
};
services.nginx = {
@ -38,11 +42,19 @@
recommendedProxySettings = true;
virtualHosts = {
"wiki.phtanum-b.katzen.cafe" = {
"ck.katzen.cafe" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.2:8081";
proxyPass = "http://127.0.0.1:3000";
proxyWebsockets = true;
extraConfig = ''
client_max_body_size 8M;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto https;
'';
};
};
"forge.katzen.cafe" = {
@ -75,10 +87,17 @@
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://localhost:9001";
proxyPass = "http://127.0.0.1:9001";
proxyWebsockets = true;
};
};
"wiki.phtanum-b.katzen.cafe" = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.2:8081";
};
};
};
};
}