记一次nginx 405的错误
Posted 飞飞1024
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记一次nginx 405的错误相关的知识,希望对你有一定的参考价值。
问题复现
今天调试一个通过域名访问的接口报了如下错误:
org.springframework.web.client.HttpClientErrorException$MethodNotAllowed: 405 Not Allowed: [<html>
<head><title>405 Not Allowed</title></head>
<body>
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx/1.18.0</center>
</body>
</html>
]
该接口地址是:
https://test.com/v1/report/report/push
这是由于配置了nginx,但是项目名没有填写,导致Nginx匹配不到。同时由于是Https的请求,所以报了405的错误。
以上是关于记一次nginx 405的错误的主要内容,如果未能解决你的问题,请参考以下文章
记一次nginx部署yii2项目时502 bad gatewary错误的排查