You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Allows unauthenticated users to perform control actions (cancel, restart,
force builds) without authentication. Useful when running buildbot behind
a VPN or on a local network where network-level access implies trust.
Copy file name to clipboardExpand all lines: nixosModules/master.nix
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -595,6 +595,12 @@ in
595
595
regardless of previous failures
596
596
'';
597
597
598
+
allowUnauthenticatedControl=lib.mkEnableOption''
599
+
allowing unauthenticated users to perform control actions (cancel, restart,
600
+
force builds). Useful when running buildbot behind a VPN or on a local network
601
+
where network-level access implies trust
602
+
'';
603
+
598
604
outputsPath=lib.mkOption{
599
605
type=lib.types.nullOrlib.types.path;
600
606
description="Path where we store the latest build store paths names for nix attributes as text files. This path will be exposed via nginx at \${domain}/nix-outputs";
0 commit comments