From e43b7f3550d2abcb2845700db1ce414503d61d1c Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Sun, 12 Jun 2022 13:24:56 +0200 Subject: [PATCH] update flake --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 8e00d36..613b8f9 100644 --- a/flake.nix +++ b/flake.nix @@ -119,9 +119,9 @@ ExecStart = '' ${gunicorn}/bin/gunicorn "raincloud:create_app('${cfg.basePath}', '${cfg.secretKeyPath}', '${cfg.redisUrl}', '${cfg.cloudName}')" \ + --bind=${cfg.address}:${toString cfg.port} \ --workers ${toString cfg.numWorkers} \ - --timeout ${toString cfg.workerTimeout} \ - --bind=${cfg.address}:${toString cfg.port} + --timeout ${toString cfg.workerTimeout} ''; }; };