diff options
Diffstat (limited to 'lass/2configs/buildbot-standalone.nix')
| -rw-r--r-- | lass/2configs/buildbot-standalone.nix | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/lass/2configs/buildbot-standalone.nix b/lass/2configs/buildbot-standalone.nix index 7f0a3bff1..18fd9bb92 100644 --- a/lass/2configs/buildbot-standalone.nix +++ b/lass/2configs/buildbot-standalone.nix @@ -9,9 +9,11 @@ let      ControlPersist 4h    ''; +  hostname = config.networking.hostName; +  in {    config.services.nginx.virtualHosts.build = { -    serverAliases = [ "build.prism.r" ]; +    serverAliases = [ "build.${hostname}.r" ];      locations."/".extraConfig = ''        proxy_set_header Upgrade $http_upgrade;        proxy_set_header Connection "upgrade"; @@ -20,7 +22,7 @@ in {    };    config.krebs.buildbot.master = let -    stockholm-mirror-url = http://cgit.prism.r/stockholm ; +    stockholm-mirror-url = "http://cgit.${hostname}.r/stockholm";    in {      slaves = {        testslave = "lasspass"; @@ -109,13 +111,13 @@ in {      web.enable = true;      irc = {        enable = true; -      nick = "buildbot-lass"; +      nick = "build|${hostname}";        server = "ni.r";        channels = [ "retiolum" "noise" ];        allowForce = true;      };      extraConfig = '' -      c['buildbotURL'] = "http://build.prism.r/" +      c['buildbotURL'] = "http://build.${hostname}.r/"      '';    };  | 
