mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2024-12-20 03:07:56 +01:00
36b7087a3f
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]"
|
|
];
|
|
};
|
|
}
|