Skip to content

Commit

Permalink
Docker: Add DELETE as allowed method in Apache. Needed for userlifecycle
Browse files Browse the repository at this point in the history
  • Loading branch information
quartje committed Sep 13, 2024
1 parent baa7fed commit 7819f6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/conf/engine.conf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ SetEnv HTTPS on

RewriteEngine On
# We support only GET/POST
RewriteCond %{REQUEST_METHOD} !^(POST|GET)$
RewriteCond %{REQUEST_METHOD} !^(POST|GET|DELETE)$
RewriteRule .* - [R=405,L]

# Set the php application handler so mod_php interpets the files
Expand Down

0 comments on commit 7819f6e

Please sign in to comment.