[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: [PLUG] apache question
|
I have something like that set up on the box I'm sitting at right now.
Try this:
in the server wide "DirectoryIndex" make sure you add "index.pl". Then
don't use a "ScriptAlias" do:
<Directory "/var/www/wwthreads">
AllowOverride None
Options ExecCGI
SetHandler cgi-script
Order allow,deny
Allow from all
</Directory>
Maybe that will work for you.
--t.
Michael Whitman wrote:
Running Apache/1.3.14
i have a cgi directory
ScriptAlias /boards/ "/var/www/wwwthreads/"
that works fine if i give it the full path to the .pl
http://www.domain.com/boards/index.pl
but is doesnt work with just
http://www.domain.com/boards/
or
http://www.domain.com/boards
Including index.cgi in the server wide DirectoryIndex directive doesnt
work.
neither does
<Directory "/var/www/wwthreads">
DirectoryIndex index.cgi index.pl
</Directory>
Anyone know how to make this work?
______________________________________________________________________
Philadelphia Linux Users Group - http://www.phillylinux.org
Announcements-http://lists.phillylinux.org/mail/listinfo/plug-announce
General Discussion - http://lists.phillylinux.org/mail/listinfo/plug
--
C-x C-c
______________________________________________________________________
Philadelphia Linux Users Group - http://www.phillylinux.org
Announcements-http://lists.phillylinux.org/mail/listinfo/plug-announce
General Discussion - http://lists.phillylinux.org/mail/listinfo/plug
|