Thank you for your assistance.
I added the following line to the /etc/apache/httpd.conf
file:
include /usr/local/campsite/etc/campsite/campsite-vhost.conf
When I attempt to restart apache I get the following error:
Syntax error on line 24 of
/usr/local/campsite/etc/campsite/campsite-vhost.conf:
Invalid command 'Action', perhaps mis-spelled or defined by
a module not included in the server configuration
Please advise,
The contents of the vhost file is:
<VirtualHost *:80>
DocumentRoot /usr/local/campsite/www/campsite/html
ScriptAlias /cgi-bin/
/usr/local/campsite/www/campsite/cgi-bin/
ServerName campsite
DirectoryIndex index.php index.html
<Directory
/usr/local/campsite/www/campsite/html>
Options -Indexes FollowSymLinks
MultiViews
AllowOverride All
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
<Directory
/usr/local/campsite/www/campsite/cgi-bin>
AllowOverride All
Options ExecCGI
<IfModule mod_access.c>
Order allow,deny
Allow from all
</IfModule>
</Directory>
AddHandler tpl_handler .tpl
Action tpl_handler /cgi-bin/tpl_cgi
</VirtualHost>
Thank you,
Joe
|