zoneminder/conf.d
Andrew Bauer 2bc6f1627e Add support for conf.d subfolder (#1902)
* 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
2017-06-05 16:39:19 -04:00
..
README Add support for conf.d subfolder (#1902) 2017-06-05 16:39:19 -04:00
zm-server-host.conf Add support for conf.d subfolder (#1902) 2017-06-05 16:39:19 -04:00

README

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.