mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-01-23 21:48:55 -05:00
* cmake changes to support conf.d * php changes to support conf.d * perl changes to support conf.d * C changes to support conf.d * add conf.d support to rpmspecfile * fix typo * specify ZM_CONFIG_SUBDIR in relevant target distros * put back my config_file perl definition * remove quotes from ZM macros * fix snprintf * add README to conf.d folder * adjust rpm specfile * remove custom permissions from README in rpmspecfile * modify rpm README documentation to reflect conf.d support * set ZM_CONFIG_SUBDIR in debian rules file
20 lines
740 B
Plaintext
20 lines
740 B
Plaintext
conf.d/README
|
|
|
|
Any changes to ZoneMinder's configuration should be made here in this folder,
|
|
rather than directly editing the default zm.conf file.
|
|
|
|
ZoneMinder will process each file in this folder with a ".conf" extension.
|
|
Each "Var = Value" pair, in each config file, will be loaded into ZoneMinder's
|
|
running configuration, overriding any variables with the same name found in the
|
|
default zm.conf file.
|
|
|
|
After creating a custom config file, don't forget to set the proper file and
|
|
owner permission on it. For example, this is typically what you should do after
|
|
saving the config file to disk:
|
|
|
|
sudo chown root:apache *.conf
|
|
sudo chmod 640 *.conf
|
|
|
|
Substitute "apache" with the name of the web server user account on your system.
|
|
|