Don't accept forward slash character for nicknames

This commit is contained in:
Sean King 2022-07-17 12:50:01 -06:00
parent 64e16e6a4b
commit 2c7eed122e
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;
# }