hotfix: disable mumble website
disable the mumble website because of cert permission issues causes by ad9c1f4481
nginx doesn't start because it can read the cert of the website
This commit is contained in:
parent
ad9c1f4481
commit
6f0d8a6af9
1 changed files with 10 additions and 10 deletions
|
@ -28,16 +28,16 @@ in
|
||||||
networking.firewall.allowedTCPPorts = [ config.services.murmur.port ];
|
networking.firewall.allowedTCPPorts = [ config.services.murmur.port ];
|
||||||
networking.firewall.allowedUDPPorts = [ config.services.murmur.port ];
|
networking.firewall.allowedUDPPorts = [ config.services.murmur.port ];
|
||||||
|
|
||||||
services.nginx.virtualHosts =
|
# services.nginx.virtualHosts =
|
||||||
let vhost = {
|
# let vhost = {
|
||||||
forceSSL = true;
|
# forceSSL = true;
|
||||||
enableACME = true;
|
# enableACME = true;
|
||||||
root = mumblesite.outPath;
|
# root = mumblesite.outPath;
|
||||||
};
|
# };
|
||||||
in {
|
# in {
|
||||||
"mumble.infra4future.de" = vhost;
|
# "mumble.infra4future.de" = vhost;
|
||||||
"mumble.hacc.space" = vhost;
|
# "mumble.hacc.space" = vhost;
|
||||||
};
|
# };
|
||||||
|
|
||||||
# set ACLs so that the murmur user can read the certificates
|
# set ACLs so that the murmur user can read the certificates
|
||||||
security.acme.certs."mumble.hacc.space".postRun = "${pkgs.acl}/bin/setfacl -Rm u:murmur:rX /var/lib/acme/mumble.hacc.space";
|
security.acme.certs."mumble.hacc.space".postRun = "${pkgs.acl}/bin/setfacl -Rm u:murmur:rX /var/lib/acme/mumble.hacc.space";
|
||||||
|
|
Loading…
Reference in a new issue