我正在使用debian。铁轨,乘客和nginx。我无法删除http请求方法来工作。我发出删除请求时收到以下错误
Access Denied
Description: You are not allowed to access the document you requested.
除了删除一切正常,包括put和options。
我将nginx保留为默认配置;我从未添加任何访问规则:
server {
listen 80;
server_name xxxxxxx;
passenger_enabled on;
rails_env production;
root /home/deploy/xxxxx;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}