logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git
commit: 2c7eed122e909f392e3d41efe43fc2b0b99fe842
parent 64e16e6a4be83e9328d62101cc21d10cf07e38fb
Author: Sean King <seanking2919@protonmail.com>
Date:   Sun, 17 Jul 2022 12:50:01 -0600

Don't accept forward slash character for nicknames

Diffstat:

Minstallation/pleroma.nginx6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/installation/pleroma.nginx b/installation/pleroma.nginx @@ -82,15 +82,15 @@ server { } # Uncomment this if you want notice compatibility routes for frontends like Soapbox. - # location ~ /@.+/([^/]+) { + # location ~ /@([^/]+)/([^/]+) { # proxy_pass http://phoenix/notice/$1; # } # - # location ~ /@.+/posts/([^/]+) { + # location ~ /@([^/]+)/posts/([^/]+) { # proxy_pass http://phoenix/notice/$1; # } # - # location ~ /.+/status/([^/]+) { + # location ~ /([^/]+)/status/([^/]+) { # proxy_pass http://phoenix/notice/$1; # }