diff options
| author | 2024-10-13 18:04:06 +0200 | |
|---|---|---|
| committer | 2024-10-13 18:04:06 +0200 | |
| commit | a68642909076b6f0bb3189b3a76629df4e138995 (patch) | |
| tree | 5f22a9a7c426eef66be42fb262b6b6886d27fa45 /.htaccess.dist | |
| parent | ccb132523a4ee740d5b576574e9f44668021fbe6 (diff) | |
Apache allow OIDC (#6893)
fix https://github.com/FreshRSS/FreshRSS/issues/6890
Fix regression from https://github.com/FreshRSS/FreshRSS/pull/6881
Diffstat (limited to '.htaccess.dist')
| -rw-r--r-- | .htaccess.dist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.htaccess.dist b/.htaccess.dist index 8821ae1ea..18475b849 100644 --- a/.htaccess.dist +++ b/.htaccess.dist @@ -1,7 +1,7 @@ # Copy this file to `.htaccess` for additional root-level protection # if you cannot set Apache `DocumentRoot` to `./p/` as recommended. -# Deny files starting with a dot, or without extension, or not in a whitelist of extensions -<FilesMatch "^\.|^[^.]+$|\.(?!css|gif|html|ico|js|php|png|svg|txt|woff|woff2)[^.]*$"> +# Deny files starting with a dot, or without extension (except some), or not in a whitelist of extensions +<FilesMatch "^\.|^(?!oidc)[^.]+$|\.(?!css|gif|html|ico|js|php|png|svg|txt|woff|woff2)[^.]*$"> Require all denied </FilesMatch> |
