DeleteDirective
Disallow directives from being configured locally.
Synopsis
|
DeleteDirective directive
|
Scope
This directive is only available for use in the global
(interchange.cfg) configuration file,
and will affect all websites running under the Interchange installation.
It will not work in a website's local (catalog.cfg)
configuration file.
Description
This directive specifies the directives which should be disabled during
the parse of the catalog.cfg files.
This can be used to both save some memory on servers with many websites,
and prevent websites from being able to use specified directives.
Example
If you wanted to set up the ErrorFile location globally,
for every website, and prevent website owners from being able to override
your setting, you could use the following:
Catalog standard directive ErrorFile /var/log/interchange/standard-error.log
Catalog foundation directive ErrorFile /var/log/interchange/foundation-error.log
DeleteDirective ErrorFile
|