Hello,
I just wondered if anyone had any experience running zoneminder on a webserver with a website running off it already, installing zoneminder to a Virtual server so as to avoid disruption to the website already running,
I'm pretty comfortable within the linux shell and my a log into my webserver via openSSH.
Any help will be much appreciated!
Its a headless mini itx webserver running ubuntu server (no GUI) with apache2, Openssh and mySQL running.
ZoneMinder on Ubuntu box running as webserver
-
- Posts: 4
- Joined: Thu Jan 06, 2011 1:11 am
If you are running Ubuntu, an easy way out is to just install the Ubuntu package via apt-get. This won't disrupt your existing service. If you are compiling from source, you just have to add the proper <Directory> directives to your existing web-site (or make a new file and include it from apache).
For example:
This creates an alias /zm so that I access http://<server>/zm and it goes to /usr/share/zoneminder, which is where ZM is installed on my system. That's pretty much all it takes. Stick that in your existing web-server cfg file, or create a new file and include it from httpd.conf or stick it in conf.d (every distribution is diff.).
Like I said, if you are kind of new to apache and are already running Ubuntu, just take the easy way out and install the package!
For example:
Code: Select all
Alias /zm /usr/share/zoneminder
<Directory>
php_flag register_globals off
Options Indexes FollowSymLinks
<IfModule>
DirectoryIndex index.php
</IfModule>
</Directory>
Like I said, if you are kind of new to apache and are already running Ubuntu, just take the easy way out and install the package!
eyeZm, Native iPhone App for ZoneMinder: http://www.eyezm.com
Version 1.3 now available on iTunes, introduces Montage view, HTTPS/SSL support and H264 native streaming!
Subscribe to RSS feed for updates: http://www.eyezm.com/rssfeed.xml
Version 1.3 now available on iTunes, introduces Montage view, HTTPS/SSL support and H264 native streaming!
Subscribe to RSS feed for updates: http://www.eyezm.com/rssfeed.xml
-
- Posts: 4
- Joined: Thu Jan 06, 2011 1:11 am
If it's working for you, then noDo i need to change anything else in the conf file if i do it that way?
eyeZm, Native iPhone App for ZoneMinder: http://www.eyezm.com
Version 1.3 now available on iTunes, introduces Montage view, HTTPS/SSL support and H264 native streaming!
Subscribe to RSS feed for updates: http://www.eyezm.com/rssfeed.xml
Version 1.3 now available on iTunes, introduces Montage view, HTTPS/SSL support and H264 native streaming!
Subscribe to RSS feed for updates: http://www.eyezm.com/rssfeed.xml
-
- Posts: 4
- Joined: Thu Jan 06, 2011 1:11 am
-
- Posts: 4
- Joined: Thu Jan 06, 2011 1:11 am