Actually fix with forward slashes being restricted inside nickname

This commit is contained in:
Sean King 2022-07-18 21:30:57 -06:00
parent 2c7eed122e
commit 3da1b2548d
No known key found for this signature in database
GPG Key ID: 510C52BACD6E7257
1 changed files with 3 additions and 3 deletions

View File

@ -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;
# }