Authcache FS Cache Backend
Categories
Component ID
2227517
Component name
Authcache FS Cache Backend
Component type
module
Maintenance status
Development status
Component security advisory coverage
not-covered
Component created
Component changed
Component body
A filesystem based authcache backend. Set it up using a configuration similar to the following one (settings.php).
In order to configure the backend, install and enable it into your modules directory. Then add the htaccess rules shipping with this module to your .htaccess file in between the rewrite-base directive and the actual query rewriting rules.
This module requires a *nix based server with working symlink support. Windows is untested.
Please note that this is pre-alpha code. It has not been deployed to any production system by author.
E.g.:
# If your site is running in a VirtualDocumentRoot at http://example.com/,
# uncomment the following line:
# RewriteBase /
### AUTHCACHE FILESYSTEM CACHE ###
[...]
### AUTHCACHE FILESYSTEM CACHE ###
# Pass all requests not referring directly to files in the filesystem to
# index.php. Clean URLs are handled in drupal_environment_initialize().
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^ index.php [L]
