mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #55443 from ptman/patch-1
nixos/docker-registry: fix listenAddress
This commit is contained in:
commit
8049fafb5d
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ let
|
||||||
delete.enabled = cfg.enableDelete;
|
delete.enabled = cfg.enableDelete;
|
||||||
};
|
};
|
||||||
http = {
|
http = {
|
||||||
addr = ":${builtins.toString cfg.port}";
|
addr = "${cfg.listenAddress}:${builtins.toString cfg.port}";
|
||||||
headers.X-Content-Type-Options = ["nosniff"];
|
headers.X-Content-Type-Options = ["nosniff"];
|
||||||
};
|
};
|
||||||
health.storagedriver = {
|
health.storagedriver = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue