Deploying RT on apache2 in localhost

Hi everyone,

I would like to deploy RT 4.2.9 on apache2 with FastCGI mod in localhost,
What should I put as values in the RT_SiteConfig.pm?

Set( $WebDomain, ‘???’ );
Set( $WebPath, ‘???’ );
Set( $WebPort, ‘???’ );

and what value should I put in the apache2 conf file ?

<VirtualHost ????? >
</VirtualHost>

Thanks in advance,

Hi,
the following are my values.

On Tue, Apr 28, 2015 at 11:24 AM, ABD EL MALEK BOUBARNOUS

Set( $WebDomain, ‘???’ );

localhost

Set( $WebPath, ‘???’ );

/rt4

Set( $WebPort, ‘???’ );

80

and what value should I put in the apache2 conf file ?

<VirtualHost ????? >
</VirtualHost>

ScriptAlias /rt4 /opt/rt4/sbin/rt-server.fcgi/

    <Location /rt4>
        Order allow,deny
        Allow from all

        Options +ExecCGI
        AddHandler fastcgi-script fcgi
    </Location>

Hope this helps.

Please in the following try to do your homework and don’t crosspost
without a very good reason.
Luca