svn commit: r263803 - user/des/fbce/misc

Dag-Erling Smørgrav des at FreeBSD.org
Thu Mar 27 08:45:00 UTC 2014


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>


More information about the svn-src-user mailing list