我在rails应用程序中使用thin作为我的Web服务器。尝试点击网址时http://localhost:3000/search/% 瘦正在投掷
Invalid request: Invalid HTTP format, parsing fails.
如何使用瘦编写自定义400响应处理程序?
答案 0 :(得分:0)
如下更新nginx配置文件,并在公共文件夹中创建400.html文件。
server { listen 80;
root /public; # <--- be sure to point to 'public'!
error_page 400 /400.html;
location = /400.html {
internal;
}
location / {
return 400;
}
}