1
0
Fork 0

sail: make firewall rules more specific

This commit is contained in:
Daniel Kempkens 2023-03-05 23:28:42 +01:00
parent c3cb43184c
commit d86187e2ee
Signed by: daniel
SSH key fingerprint: SHA256:Ks/MyhQYcPRQiwMKLAKquWCdCPe3JXlb1WttgnAoSeM
4 changed files with 3 additions and 8 deletions

View file

@ -3,9 +3,9 @@
{
security.acme = {
acceptTerms = true;
email = "acme@kempkens.io";
defaults = {
email = "acme@kempkens.io";
dnsProvider = "cloudflare";
credentialsFile = config.age.secrets.acme-credentials.path;
dnsResolver = "1.1.1.1:53";

View file

@ -26,5 +26,5 @@
};
};
networking.firewall.allowedTCPPorts = [ 8015 ];
networking.firewall.interfaces."tailscale0".allowedTCPPorts = [ 8015 ];
}

View file

@ -9,11 +9,6 @@
};
services.nginx = {
enable = true;
recommendedOptimisation = true;
recommendedGzipSettings = true;
recommendedBrotliSettings = true;
virtualHosts."libreddit.only.internal" = {
listen = [
{

View file

@ -87,5 +87,5 @@
extraConfigFiles = [ config.age.secrets.synapse-extra-config.path ];
};
networking.firewall.allowedTCPPorts = [ 8008 ];
networking.firewall.interfaces."enp7s0".allowedTCPPorts = [ 8008 ];
}