Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 27 Mar 2014 08:44:59 +0000 (UTC)
From:      Dag-Erling Smørgrav <des@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r263803 - user/des/fbce/misc
Message-ID:  <201403270844.s2R8ixa5077696@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: des
Date: Thu Mar 27 08:44:59 2014
New Revision: 263803
URL: http://svnweb.freebsd.org/changeset/base/263803

Log:
  Sample Apache configuration

Added:
  user/des/fbce/misc/
  user/des/fbce/misc/apache.conf   (contents, props changed)

Added: user/des/fbce/misc/apache.conf
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ user/des/fbce/misc/apache.conf	Thu Mar 27 08:44:59 2014	(r263803)
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+ServerName fbce.example.com
+
+<IfModule !fastcgi_module>
+  LoadModule fastcgi_module libexec/apache22/mod_fastcgi.so
+</IfModule>
+
+DocumentRoot /home/fbce/root
+Alias /static /home/fbce/root/static
+
+FastCgiServer /home/fbce/script/fbce_fastcgi.pl -processes 3
+Alias / /home/fbce/script/fbce_fastcgi.pl/
+
+<Location />
+  Order allow,deny
+  Allow from all
+</Location>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403270844.s2R8ixa5077696>