ngnix for conduit

This commit is contained in:
Nathan McCarty 2025-03-27 02:55:22 -04:00
parent 974de549bc
commit 1baa1ce671
2 changed files with 74 additions and 3 deletions

View file

@ -35,7 +35,15 @@
};
# ACME data must be readable by the NGINX user
# users.users.nginx.extraGroups = [
# "acme"
# ];
users.users.nginx.extraGroups = [
"acme"
];
# Enable nginx
services.nginx = {
enable = true;
recommendedProxySettings = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
};
}