diff options
author | Franck Cuny <franck@fcuny.net> | 2022-05-26 09:04:59 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-05-26 09:04:59 -0700 |
commit | f791952f955553ae7bfebfc64701318ad27bb211 (patch) | |
tree | 10b4a55ee33cd25c1712b06610958efcfce0757e /modules/services/gerrit | |
parent | fix(gerrit): remove extra '}' from string (diff) | |
download | world-f791952f955553ae7bfebfc64701318ad27bb211.tar.gz |
fix(gerrit): use localhost for the proxy
Diffstat (limited to 'modules/services/gerrit')
-rw-r--r-- | modules/services/gerrit/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/services/gerrit/default.nix b/modules/services/gerrit/default.nix index 19fa5f1..6eaece4 100644 --- a/modules/services/gerrit/default.nix +++ b/modules/services/gerrit/default.nix @@ -33,7 +33,7 @@ in { docUrl = "/Documentation"; }; - httpd.listenUrl = "proxy-https://${cfg.listenAddress}"; + httpd.listenUrl = "proxy-https://localhost:4778"; download.command = [ "checkout" "cherry_pick" "format_patch" "pull" ]; |