Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NGINX return 405 Not Allowed with POST method

Tags:

nginx

I have this default.conf:

server {
        listen  443 ssl;
        root /etc/nginx/json/;
        server_name    myserver.com;
        ssl_certificate /etc/ssl/certs/server.crt;
        ssl_certificate_key     /etc/ssl/private/server.key;
        ssl_protocols   TLSv1 TLSv1.1 TLSv1.2;
        ssl_ciphers     HIGH:!aNULL:!MD5;
        location /platform/enabler/iam/token/generate/1.0.0
        {
                alias  /etc/nginx/json/generateToken.json;
        } }

calling the API with GET method the response is correct. calling the API with POST method the response is:

<html>
<head><title>405 Not Allowed</title></head>
<body bgcolor="white">
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx/1.14.2</center>
</body>
</html>

Please, could you help me?

like image 411
sarjaana Avatar asked May 23 '26 02:05

sarjaana


1 Answers

You can add the following line to your config to make nginx serve the POST requests with static files:

error_page 405 =200 $uri;
like image 161
Ivan Shatsky Avatar answered May 30 '26 08:05

Ivan Shatsky



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!