summaryrefslogtreecommitdiff
path: root/nginx/nginx.conf
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2021-06-11 10:18:57 -0400
committerDaniel Micay <danielmicay@gmail.com>2021-06-11 10:18:57 -0400
commitbd3cfebafd295f371cdfaff0a55b8df88f190b00 (patch)
tree9501cec4181ad47fd8a1d5fa5288ff464252ea83 /nginx/nginx.conf
parent05e0a9e8b5a320ee1538e6d34961eb4cb7c5b3e1 (diff)
fix object replacement character redirect
Diffstat (limited to 'nginx/nginx.conf')
-rw-r--r--nginx/nginx.conf4
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 /;
}