From 01fe8b0dcb776974015b836b92a37238d85f2148 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Sat, 6 Sep 2025 20:43:21 +0200 Subject: [PATCH] fix brackets --- hosts/hetzner-vpn2/nginx.nix | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/hosts/hetzner-vpn2/nginx.nix b/hosts/hetzner-vpn2/nginx.nix index 7d161c3..8148472 100644 --- a/hosts/hetzner-vpn2/nginx.nix +++ b/hosts/hetzner-vpn2/nginx.nix @@ -84,21 +84,21 @@ in ]; }; }; + }; - anubis = { - instances.main = { - enable = true; - settings = { - BIND = anubis-domain-socket; - TARGET = "unix://" + blog-domain-socket; - }; + anubis = { + instances.main = { + enable = true; + settings = { + BIND = anubis-domain-socket; + TARGET = "unix://" + blog-domain-socket; }; }; - - networking.firewall.allowedTCPPorts = [ - 80 - 443 - 5201 - ]; }; + + networking.firewall.allowedTCPPorts = [ + 80 + 443 + 5201 + ]; }