[rt-users] Telling a web site to user Perl 5.8

David.Addison at infineon.com David.Addison at infineon.com
Thu Dec 4 06:38:33 EST 2003


I've included below the virtual server section of my fastcgi installation in
case it's useful

<VirtualHost *>
    ServerAdmin *@*.*
    DocumentRoot /opt/rt3/share/html
    ServerName *.*
    AddDefaultCharSet UTF-8
    ErrorLog logs/error_log
    CustomLog logs/access_log common
    <Location /server-info>
        SetHandler server-info
        Order deny,allow
        Deny from all
        Allow from .*.*
    </Location>

    ScriptAlias /cgi-bin/ "/opt/rt3/bin/"

    FastCgiServer /opt/rt3/bin/mason_handler.fcgi
    Alias /NoAuth/images/ /opt/rt3/share/html/NoAuth/images/
    ScriptAlias / /opt/rt3/bin/mason_handler.fcgi/
    #
    <Directory "/opt/rt3/bin">
        AllowOverride None
        Options None
        Order allow,deny
        Allow from all
    </Directory>
</VirtualHost>

I may be over simplifying things but it might be worth changing the first
line of the mason_handler.fcgi file to point to your local installation of
perl 5.8 (if you haven't already)

Dave



More information about the rt-users mailing list