lab-infra/machines/photo01/nginx.nix
Constantin Gierczak--Galle 68b5f86bd5
Some checks failed
Check meta / check_meta (push) Failing after 2m13s
lint / check (push) Successful in 3m44s
build configuration / build_krz01 (push) Failing after 13m33s
feat(photo01): init (#4)
Reviewed-on: #4
Co-authored-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
Co-committed-by: Constantin Gierczak--Galle <git.cst1@mailbox.org>
2024-11-22 14:04:37 +01:00

10 lines
225 B
Nix

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