about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ops/modules/sourcegraph.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/ops/modules/sourcegraph.nix b/ops/modules/sourcegraph.nix
index a24328f3e3..a629060d23 100644
--- a/ops/modules/sourcegraph.nix
+++ b/ops/modules/sourcegraph.nix
@@ -46,6 +46,12 @@ in {
       ];
 
       environment.SRC_SYNTECT_SERVER = "http://172.17.0.1:${toString cfg.cheddarPort}";
+
+      # Sourcegraph needs a higher nofile limit, it logs warnings
+      # otherwise (unclear whether it actually affects the service).
+      extraOptions = [
+        "--ulimit" "nofile=10000:10000"
+      ];
     };
   };
 }