lab-infra/machines/homebox01/nginx.nix
Constantin Gierczak--Galle 8445a860c1
Some checks failed
lint / check (push) Successful in 22s
lint / check (pull_request) Successful in 24s
Check meta / check_meta (pull_request) Failing after 27s
build configuration / build_krz01 (pull_request) Failing after 1m30s
fix: fmt
2024-12-05 10:58:24 +01:00

10 lines
225 B
Nix

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