change the default value of blockLocalAddresses

This commit is contained in:
Athou
2026-02-18 20:53:23 +01:00
parent 2be61e8b1c
commit a81de48cfb

View File

@@ -144,10 +144,9 @@ public interface CommaFeedConfiguration {
* Prevent access to local addresses to mitigate server-side request forgery (SSRF) attacks, which could potentially expose internal * Prevent access to local addresses to mitigate server-side request forgery (SSRF) attacks, which could potentially expose internal
* resources. * resources.
* *
* You may want to disable this if you subscribe to feeds that are only available on your local network and you trust all users of * You may want to enable this if you host a public instance of CommaFeed with regisration open.
* your CommaFeed instance.
*/ */
@WithDefault("true") @WithDefault("false")
boolean blockLocalAddresses(); boolean blockLocalAddresses();
/** /**