PUT en DELETE request with nginx as a reverse proxy

tijsje

New member
Joined
Oct 20, 2015
Messages
4
Usually I add the following to the Custom HTTPD Configuration to use PUT en DELETE request for Apache.

Code:
<Directory /home/ontwikkel>
        AllowOverride All
        Options -MultiViews -Indexes +FollowSymLinks +IncludesNoExec +Includes
        <Limit GET POST PUT DELETE OPTIONS PROPFIND>
                Order allow,deny
                Allow from all
        </Limit>
        <LimitExcept GET POST PUT DELETE OPTIONS PROPFIND>
                Order deny,allow
                Deny from all
        </LimitExcept>
</Directory>

Now I use an nginx as a reverse proxy, and the requests are still blocked.
When I test on port 8080 then it works well.
What needs to be adjusted in nginx?
 
Back
Top