I'm trying to put together a REST-ful application and am having a hard time
getting apache configured to take DELETE's.  I have in the virtual host
file:
<Directory /path/to/directory />
        AllowOverride All
        Options All
        <Limit DELETE GET PUT POST >
            Order allow,deny
            Allow from all
        </Limit>
    </Directory>

I only added this configuruation after it was first denied, thinking i had
to enable it.  I'm using apache 2.2.13.  This directory is also named as a
WSGIScriptAlias /wsgi /path/to/directory.  POST/GET works fine, have not yet
tried PUT.

Thanks for what is sure to be a simple solution.

Jeff

Reply via email to