Skip to content

Commit

Permalink
Docker Apache config: Change access control
Browse files Browse the repository at this point in the history
Before with PHP-FPM we did not need to do a "require all granted" within
<Location> tags. With Apache as a module we do need it.
  • Loading branch information
quartje committed May 23, 2023
1 parent b2349a0 commit 24ff412
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/conf/webauthn-apache2.conf
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php [QSA,L]
</Directory>
<Location />
Require all granted
</Location>

Header always set X-Content-Type-Options "nosniff"

Expand Down

0 comments on commit 24ff412

Please sign in to comment.