This commit is contained in:
iFargle 2023-10-08 17:25:18 +09:00
parent 5b9acd3cd5
commit b5e610ef4a
2 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
{pkgs, lib, config, ...}: { {pkgs, lib, config, ...}: {
networking.firewall.interface.wireguard0.allowedTCPPorts = [ 80 443 ]; networking.firewall.interfaces.wireguard0.allowedTCPPorts = [ 80 443 ];
services.nginx = { services.nginx = {
enable = true; enable = true;

View file

@ -1,5 +1,5 @@
{ config, lib, pkgs, ... }: { { config, lib, pkgs, ... }: {
networking.firewall.allowedTCPPorts = [ networking.firewall.interfaces.eno3.allowedTCPPorts = [
80 80
443 443
]; ];