Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.28 KB | None | 0 0
  1. steve@zonemindertest:~$ ls -lh /etc/zm
  2. total 8.0K
  3. drwxr-xr-x 2 root root 4.0K Jun 21 00:11 conf.d
  4. -rw-r----- 1 www-data www-data 2.9K Jun 14 05:34 zm.conf
  5. steve@zonemindertest:~$ ls -lh /etc/zm/conf.d
  6. total 0
  7. steve@zonemindertest:~$ sudo cat /etc/zm/zm.conf
  8. [sudo] password for steve:
  9. # ==========================================================================
  10. #
  11. # ZoneMinder Base Configuration File
  12. #
  13. # ==========================================================================
  14. #
  15. # *** DO NOT EDIT THIS FILE ***
  16. # Changes made directly to this configuration file are no longer supported.
  17. # They will be overwritten during an upgrade.
  18. #
  19. # Instead, create a custom configuration file, with an extention of ".conf"
  20. # under the /etc/zm/conf.d subfolder containing your desired modifications.
  21. #
  22.  
  23. # Path to installed data directory, used mostly for finding DB upgrade scripts
  24. ZM_PATH_DATA=/usr/share/zoneminder
  25.  
  26. # Path to ZoneMinder binaries
  27. ZM_PATH_BIN=/usr/bin
  28.  
  29. # Path to ZoneMinder libraries (none at present, for future use)
  30. ZM_PATH_LIB=/usr/lib/x86_64-linux-gnu
  31.  
  32. # Path to ZoneMinder configuration (this file only at present)
  33. ZM_PATH_CONF=/etc/zm
  34.  
  35. # Path to ZoneMinder web files
  36. ZM_PATH_WEB=/usr/share/zoneminder/www
  37.  
  38. # Path to ZoneMinder cgi files
  39. ZM_PATH_CGI=/usr/lib/zoneminder/cgi-bin
  40.  
  41. # Username and group that web daemon (httpd/apache) runs as
  42. ZM_WEB_USER=www-data
  43. ZM_WEB_GROUP=www-data
  44.  
  45. # ZoneMinder database type: so far only mysql is supported
  46. ZM_DB_TYPE=mysql
  47.  
  48. # ZoneMinder database hostname or ip address and optionally port or unix socket
  49. # Acceptable formats include hostname[:port], ip_address[:port], or localhost:unix_socket
  50. ZM_DB_HOST=localhost
  51.  
  52. # ZoneMinder database name
  53. ZM_DB_NAME=zm
  54.  
  55. # ZoneMinder database user
  56. ZM_DB_USER=zmuser
  57.  
  58. # ZoneMinder database password
  59. ZM_DB_PASS=zmpass
  60.  
  61. # Full path to the folder events are recorded to.
  62. # The web account user must have full read/write permission to this folder.
  63. ZM_DIR_EVENTS=/var/cache/zoneminder/events
  64.  
  65. # Full path to the folder images, not directly associated with events,
  66. # are recorded to.
  67. # The web account user must have full read/write permission to this folder.
  68. ZM_DIR_IMAGES=/var/cache/zoneminder/images
  69.  
  70. # Foldername under the webroot where ZoneMinder looks for optional sound files
  71. # to play when an alarm is detected.
  72. ZM_DIR_SOUNDS=sounds
  73.  
  74. # Full path to the folder where exported archives are stored
  75. # The web account user must have full read/write permission to this folder.
  76. ZM_DIR_EXPORTS=/tmp/zm
  77.  
  78. # ZoneMinder url path to the zms streaming server
  79. ZM_PATH_ZMS=/zm/cgi-bin/nph-zms
  80.  
  81. # Full Path to ZoneMinder's mapped memory files
  82. # The web account user must have full read/write permission to this folder.
  83. ZM_PATH_MAP=/dev/shm
  84.  
  85. # Full Path to ZoneMinder's socket folder
  86. # The web account user must have full read/write permission to this folder.
  87. ZM_PATH_SOCKS=/var/run/zm
  88.  
  89. # Full path to ZoneMinder's log folder
  90. # The web account user must have full read/write permission to this folder.
  91. ZM_PATH_LOGS=/var/log/zm
  92.  
  93. # Full path to ZoneMinder's swap folder
  94. # The web account user must have full read/write permission to this folder.
  95. ZM_PATH_SWAP=/tmp/zm
  96.  
  97. # Full path to optional arp binary
  98. # ZoneMinder will find the arp binary automatically on most systems
  99. ZM_PATH_ARP=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement