Removed /usr/local from CDPATH
[clearscm.git] / rmc / rmc.conf
1 ################################################################################
2 #
3 # File:         rmc.conf
4 # Revision:     $Revision: 1 $
5 # Description:  Apache conf file for RMC
6 # Author:       Andrew@Clearscm.com
7 # Created:      Mon, Jun 01, 2015 12:19:02 PM
8 # Modified:     $Date: 2012/09/20 06:52:37 $
9 # Language:     Apache
10 #
11 # (c) Copyright 2015, Audience, Inc., all rights reserved.
12 #
13 # This file defines the RMC web app for Apache. Generally it is symlinked into
14 # /etc/httpd/conf.d
15 #
16 ################################################################################
17 Listen <PORT>
18
19 <VirtualHost *:<PORT>>
20   ServerName  <SERVER>.audience.local:<PORT>
21   ServerAlias <SERVER>
22   ErrorLog  "/var/log/httpd/rmc.error.log"
23   CustomLog "/var/log/httpd/rmc.access.log" common
24   DocumentRoot  "/opt/audience/Web/rmc"
25
26   <Directory "/opt/audience/Web/rmc">
27     Options Indexes MultiViews FollowSymLinks ExecCGI
28     DirectoryIndex index.html index.pl
29     AllowOverride None
30     Order allow,deny
31     Allow from all
32     AddHandler cgi-script .pl
33   </Directory>
34 </VirtualHost>