Permalink
Show file tree
Hide file tree
2 comments
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge pull request #1697 from connortechnology/apache_indexes
Apache indexes
- Loading branch information
Showing
5 changed files
with
17 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,19 @@ | ||
| Alias /zm /usr/share/zoneminder/www | ||
| # Remember to enable cgi mod (i.e. "a2enmod cgi"). | ||
| ScriptAlias /zm/cgi-bin "/usr/lib/zoneminder/cgi-bin" | ||
| <Directory "/usr/lib/zoneminder/cgi-bin"> | ||
| Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch | ||
| AllowOverride All | ||
| Require all granted | ||
| </Directory> | ||
|
|
||
| Alias /zm /usr/share/zoneminder/www | ||
| <Directory /usr/share/zoneminder/www> | ||
| Options Indexes FollowSymLinks | ||
| Options -Indexes +ollowSymLinks | ||
| <IfModule mod_dir.c> | ||
| DirectoryIndex index.php | ||
| </IfModule> | ||
| </Directory> | ||
|
|
||
| <Directory /usr/share/zoneminder/www/api> | ||
| AllowOverride All | ||
| </Directory> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71898dfThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
distros/ubuntu1504_cmake_split_packages/apache.conf there is typo:
71898dfThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, not sure we are using that folder for any active packages, it was a experiment in splitting packages into component parts. Anyway I fixed and created a PR #1773