1
0
Fork 0
forked from DGNum/lab-infra
lab-infra/machines/status01/nginx.nix
Constantin Gierczak--Galle d3bfe16f7f feat(status01): init (#11)
Reviewed-on: DGNum/lab-infra#11
Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
2024-12-07 16:26:03 +01:00

10 lines
225 B
Nix

{
services.nginx = {
enable = true;
recommendedTlsSettings = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedProxySettings = true;
clientMaxBodySize = "500m";
};
}