Adding some files of recent work.
[clearscm.git] / rmc / rmc.conf
diff --git a/rmc/rmc.conf b/rmc/rmc.conf
new file mode 100644 (file)
index 0000000..e35ff64
--- /dev/null
@@ -0,0 +1,34 @@
+################################################################################
+#
+# File:         rmc.conf
+# Revision:     $Revision: 1 $
+# Description:  Apache conf file for RMC
+# Author:       Andrew@Clearscm.com
+# Created:      Mon, Jun 01, 2015 12:19:02 PM
+# Modified:     $Date: 2012/09/20 06:52:37 $
+# Language:     Apache
+#
+# (c) Copyright 2015, Audience, Inc., all rights reserved.
+#
+# This file defines the RMC web app for Apache. Generally it is symlinked into
+# /etc/httpd/conf.d
+#
+################################################################################
+Listen <PORT>
+
+<VirtualHost *:<PORT>>
+  ServerName  <SERVER>.audience.local:<PORT>
+  ServerAlias <SERVER>
+  ErrorLog  "/var/log/httpd/rmc.error.log"
+  CustomLog "/var/log/httpd/rmc.access.log" common
+  DocumentRoot  "/opt/audience/Web/rmc"
+
+  <Directory "/opt/audience/Web/rmc">
+    Options Indexes MultiViews FollowSymLinks ExecCGI
+    DirectoryIndex index.html index.pl
+    AllowOverride None
+    Order allow,deny
+    Allow from all
+    AddHandler cgi-script .pl
+  </Directory>
+</VirtualHost>