Advertisement
Guest User

Untitled

a guest
Jul 12th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. # ==========================================================================
  2. #
  3. # ZoneMinder Base Configuration
  4. #
  5. # ==========================================================================
  6. #
  7. # *** DO NOT EDIT THIS FILE ***
  8. #
  9. # To make custom changes to the variables below, create a new configuration
  10. # file, with an extention of .conf, under the /etc/zm/conf.d
  11. # folder, containing your desired modifications.
  12. #
  13.  
  14. # Path to installed data directory, used mostly for finding DB upgrade scripts
  15. ZM_PATH_DATA=/usr/share/zoneminder
  16.  
  17. # Path to ZoneMinder binaries
  18. ZM_PATH_BIN=/usr/bin
  19.  
  20. # Path to ZoneMinder libraries (none at present, for future use)
  21. ZM_PATH_LIB=/usr/lib/x86_64-linux-gnu
  22.  
  23. # Path to ZoneMinder configuration (this file only at present)
  24. ZM_PATH_CONF=/etc/zm
  25.  
  26. # Path to ZoneMinder web files
  27. ZM_PATH_WEB=/usr/share/zoneminder/www
  28.  
  29. # Path to ZoneMinder cgi files
  30. ZM_PATH_CGI=/usr/lib/zoneminder/cgi-bin
  31.  
  32. # Username and group that web daemon (httpd/apache) runs as
  33. ZM_WEB_USER=www-data
  34. ZM_WEB_GROUP=www-data
  35.  
  36. # ZoneMinder database type: so far only mysql is supported
  37. ZM_DB_TYPE=mysql
  38.  
  39. # ZoneMinder database hostname or ip address and optionally port or unix socket
  40. # Acceptable formats include hostname[:port], ip_address[:port], or localhost:unix_socket
  41. ZM_DB_HOST=localhost
  42.  
  43. # ZoneMinder database name
  44. ZM_DB_NAME=zm
  45.  
  46. # ZoneMinder database user
  47. ZM_DB_USER=zmuser
  48.  
  49. # ZoneMinder database password
  50. ZM_DB_PASS=pass
  51.  
  52. # SSL CA certificate for ZoneMinder database
  53. ZM_DB_SSL_CA_CERT=
  54.  
  55. # SSL client key for ZoneMinder database
  56. ZM_DB_SSL_CLIENT_KEY=
  57.  
  58. # SSL client cert for ZoneMinder database
  59. ZM_DB_SSL_CLIENT_CERT=
  60.  
  61. # Do NOT set ZM_SERVER_HOST if you are not using Multi-Server
  62. # You have been warned
  63. #
  64. # The name specified here must have a corresponding entry
  65. # in the Servers tab under Options
  66. ZM_SERVER_HOST=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement