feat: update allowed TCP port in sgx network configuration
This commit updates the allowed TCP port for networking in the SGX configuration file. Instead of hardcoding the port number, it now uses the port specified in the netatalk configuration. This change enables more flexibility in port assignment and reduces potential conflicts.
This commit is contained in:
parent
5615b246b6
commit
d44ef254fa
|
@ -37,6 +37,6 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 548 ];
|
networking.firewall.allowedTCPPorts = [ config.services.netatalk.port ];
|
||||||
networking.firewall.allowPing = true;
|
networking.firewall.allowPing = true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue