aboutsummaryrefslogtreecommitdiff
path: root/.htaccess.dist
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2024-11-19 21:28:50 +0100
committerGravatar GitHub <noreply@github.com> 2024-11-19 21:28:50 +0100
commit6970723aebae7ae90405368e6314e113885cd0de (patch)
treee662f00fc1cbc9473cb3cb2261c7caf46adf4062 /.htaccess.dist
parent966f211202bc2ed6bf56b64e1ea3c4804e93c404 (diff)
Rework Apache deny access outside p (#7008)
* Rework Apache deny access outside p The deny rules introduced by https://github.com/FreshRSS/FreshRSS/pull/6881 gave problems for API access. See also https://github.com/FreshRSS/FreshRSS/discussions/6879 * Fix scope of deny logic * Fix scope of deny logic * Allow .txt For e.g. `robots.txt`
Diffstat (limited to '.htaccess.dist')
-rw-r--r--.htaccess.dist9
1 files changed, 7 insertions, 2 deletions
diff --git a/.htaccess.dist b/.htaccess.dist
index 18475b849..33f794673 100644
--- a/.htaccess.dist
+++ b/.htaccess.dist
@@ -1,7 +1,12 @@
# 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 (except some), or not in a whitelist of extensions
-<FilesMatch "^\.|^(?!oidc)[^.]+$|\.(?!css|gif|html|ico|js|php|png|svg|txt|woff|woff2)[^.]*$">
+# Deny files starting with a dot or without extension or with specific extensions
+<FilesMatch "^\.|^[^.]+$|\.(config\.js|gz|json|md|neon|sqlite|xml|ya?ml|zip)$">
Require all denied
</FilesMatch>
+
+# Deny some sub-folders, which may not be excluded by their own .htaccess
+<If "%{REQUEST_URI} =~ m#/(bin|data|node_modules|vendor|\..+)(/|$)#">
+ Require all denied
+</If>