mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2025-12-28 08:48:00 -05:00
- Dockerfile now builds properly - Dockerfile now ADDs files from local directory. This allows you to either pull from github (for master) or to build locally (for development) - Removes some dependencies from container (wget, git) - Removes pulling apache virtual host file from github - Upgrades MySQL start check to actually check instead of just sleeping
14 lines
376 B
Plaintext
14 lines
376 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot /var/www/zm
|
|
DirectoryIndex index.php
|
|
|
|
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
|
|
<Directory "/usr/lib/cgi-bin">
|
|
AllowOverride None
|
|
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
</VirtualHost>
|