diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2021-06-11 10:18:57 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2021-06-11 10:18:57 -0400 |
| commit | bd3cfebafd295f371cdfaff0a55b8df88f190b00 (patch) | |
| tree | 9501cec4181ad47fd8a1d5fa5288ff464252ea83 /nginx | |
| parent | 05e0a9e8b5a320ee1538e6d34961eb4cb7c5b3e1 (diff) | |
fix object replacement character redirect
Diffstat (limited to 'nginx')
| -rw-r--r-- | nginx/nginx.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 385781db..aa1a70d8 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -160,8 +160,8 @@ http { return 301 /usage#updates; } - # broken link (now fixed) on https://noagendaphone.com/ with UTF-8 replacement character - location = /%EF%BF%BC { + # broken link (now fixed) on https://noagendaphone.com/ with UTF-8 object replacement character + location = "/" { return 301 /; } |
