From bf062a4a46649026187855ad2af48f58ac66de59 Mon Sep 17 00:00:00 2001 From: mleku Date: Fri, 12 Sep 2025 18:44:22 +0100 Subject: [PATCH] Update default ACL mode to `none` in config. --- app/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/config/config.go b/app/config/config.go index 44a3e49..a1f498c 100644 --- a/app/config/config.go +++ b/app/config/config.go @@ -34,7 +34,7 @@ type C struct { IPWhitelist []string `env:"ORLY_IP_WHITELIST" usage:"comma-separated list of IP addresses to allow access from, matches on prefixes to allow private subnets, eg 10.0.0 = 10.0.0.0/8"` Admins []string `env:"ORLY_ADMINS" usage:"comma-separated list of admin npubs"` Owners []string `env:"ORLY_OWNERS" usage:"comma-separated list of owner npubs, who have full control of the relay for wipe and restart and other functions"` - ACLMode string `env:"ORLY_ACL_MODE" usage:"ACL mode: follows,none" default:"follows"` + ACLMode string `env:"ORLY_ACL_MODE" usage:"ACL mode: follows,none" default:"none"` } // New creates and initializes a new configuration object for the relay