open default http ports
This commit is contained in:
parent
235a6705cc
commit
fef3dc0c2b
3 changed files with 10 additions and 3 deletions
|
|
@ -20,7 +20,12 @@
|
|||
hardware.enableRedistributableFirmware = true;
|
||||
hardware.enableAllFirmware = true;
|
||||
|
||||
networking.hostName = "lambdaOS"; # Define your hostname.
|
||||
networking = {
|
||||
hostName = "lambdaOS"; # Define your hostname.
|
||||
extraHosts = ''
|
||||
::1 noa.voorwaarts.nl
|
||||
'';
|
||||
};
|
||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||
|
||||
# Configure network proxy if necessary
|
||||
|
|
@ -219,8 +224,8 @@
|
|||
};
|
||||
|
||||
# Open ports in the firewall.
|
||||
networking.firewall.allowedTCPPorts = [ 2000 ];
|
||||
networking.firewall.allowedUDPPorts = [ 2000 ];
|
||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||
networking.firewall.allowedUDPPorts = [ 80 443 ];
|
||||
# Or disable the firewall altogether.
|
||||
# networking.firewall.enable = false;
|
||||
|
||||
|
|
|
|||
|
|
@ -61,6 +61,7 @@
|
|||
# Programming langs
|
||||
go
|
||||
nodejs
|
||||
opam
|
||||
];
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue