Adding normal HTML pages

I would like to add a separate folder with normal HTML files
Inside the RT website (/rt3/shared/html)
For testing I added: /rt3/shared/html/test/index.htm

My current apache config looks like:

load fastcgi

LoadModule fastcgi_module /usr/lib/apache2/mod_fastcgi.so

Tell FastCGI to put its temporary files somewhere sane.

FastCgiIpcDir /tmp

Number of processes is tunable, but you need at least 3 or 4

“FastCgiServer” is illegal in the VirtualHost section

FastCgiServer /rt3/bin/mason_handler.fcgi -idle-timeout 120 -processes 4
ServerName helpdesk.interconnect.be
DocumentRoot /rt3/share/html
AddHandler fastcgi-script fcgi
ScriptAlias / /rt3/bin/mason_handler.fcgi/
ErrorLog /var/log/apache2/rt_error
CustomLog /var/log/apache2/rt-access_log common

AddDefaultCharset UTF-8
SetHandler fastcgi-script

<Directory “/rt3”>
Order allow,deny
Allow from all

I tried to add the following - but it keeps starting the the mason
handler :-/

<Location /test>
AddDefaultCharset UTF-8
SetHandler None

Can someone help me out ?

Thanks,
Filip

CONFIDENTIALITY NOTICE
This E-mail message and any documents which accompany it are intended only for the use of the individual or entity to which addressed, and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If the reader is not the intended recipient, any disclosure, distribution or other use of this E-mail message is prohibited. If you have received this E-mail message in error, please delete and notify the sender immediately. Thank you.

Try This:

<Location /test>
SetHandler default-handler

Works for me when I want to load regular web pages and documents.

Adam

  • NOTE: This message is intended only for the use of the individual or entity to whom it is addressed and contains information that is privileged, confidential and exempt from disclosure. If the reader of this message is not the intended recipient or an employee or agent responsible for delivering the message to the intended recipient, you are hereby notified that any dissemination, distribution or copying of this communication is strictly prohibited. If you have received this communication in error, please notify me immediately via reply e-mail and please delete this communication.

Thanks Adam !

It works… ;-)-----Original Message-----
From: Myers, Adam [mailto:AMyers@abacus-us.com]
Sent: woensdag 15 februari 2006 18:44
To: Filip Jonckers; rt users
Subject: RE: [rt-users] adding normal HTML pages

Try This:

<Location /test>
SetHandler default-handler

Works for me when I want to load regular web pages and documents.

Adam

  • NOTE: This message is intended only for the use of the individual or
    entity to whom it is addressed and contains information that is
    privileged, confidential and exempt from disclosure. If the reader of
    this message is not the intended recipient or an employee or agent
    responsible for delivering the message to the intended recipient, you
    are hereby notified that any dissemination, distribution or copying of
    this communication is strictly prohibited. If you have received this
    communication in error, please notify me immediately via reply e-mail
    and please delete this communication.

CONFIDENTIALITY NOTICE
This E-mail message and any documents which accompany it are intended only for the use of the individual or entity to which addressed, and may contain information that is privileged, confidential or exempt from disclosure under applicable law. If the reader is not the intended recipient, any disclosure, distribution or other use of this E-mail message is prohibited. If you have received this E-mail message in error, please delete and notify the sender immediately. Thank you.