h7x4
36b7087a3f
Some checks failed
Eval nix flake / evals (push) Failing after 1m49s
Turns out the settings were in biceps local nginx config
16 lines
255 B
Nix
16 lines
255 B
Nix
{ config, values, ... }:
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
enableReload = true;
|
|
defaultListenAddresses = [
|
|
values.hosts.bicep.ipv4
|
|
"[${values.hosts.bicep.ipv6}]"
|
|
|
|
"127.0.0.1"
|
|
"127.0.0.2"
|
|
"[::1]"
|
|
];
|
|
};
|
|
}
|