如何使用thin配置自定义400响应?

时间:2015-03-17 06:35:05

标签: ruby-on-rails thin

我在rails应用程序中使用thin作为我的Web服务器。尝试点击网址时http://localhost:3000/search/% 正在投掷

 Invalid request: Invalid HTTP format, parsing fails.

如何使用编写自定义400响应处理程序?

1 个答案:

答案 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;
}

}