mirror of
https://git.pvv.ntnu.no/Drift/pvv-nixos-config.git
synced 2025-04-11 08:21:22 +02:00
16 lines
271 B
Nix
16 lines
271 B
Nix
{ config, values, ... }:
|
|
{
|
|
services.nginx = {
|
|
enable = true;
|
|
enableReload = true;
|
|
#defaultListenAddresses = [
|
|
# values.hosts.ildkule.ipv4
|
|
# "[${values.hosts.ildkule.ipv6}]"
|
|
#
|
|
# "127.0.0.1"
|
|
# "127.0.0.2"
|
|
# "[::1]"
|
|
#];
|
|
};
|
|
}
|