diff options
Diffstat (limited to 'systems/atlas/nginx.nix')
| -rw-r--r-- | systems/atlas/nginx.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/systems/atlas/nginx.nix b/systems/atlas/nginx.nix index 6cdd793..626b4b3 100644 --- a/systems/atlas/nginx.nix +++ b/systems/atlas/nginx.nix @@ -28,12 +28,17 @@ in { services.nginx = { enable = true; + clientMaxBodySize = "2048m"; # 2GB recommendedGzipSettings = true; recommendedOptimisation = true; recommendedProxySettings = true; recommendedTlsSettings = true; virtualHosts = mkVHosts { + "cache.${domain}" = { + locations = mkProxy "/" "5000"; + }; + "miniflux.${domain}" = { locations = mkProxy "/" "7000"; }; |
