Hello Everyone!

Iv set up different subdomains so i can point users to the customer.pl page
for ticket management, and another subdomain for otrs administration. Iv
followed many suggestions and documentations for apache, but cant manage to
use different hosts for both index.pl and customer.pl, can anyone help me ,
if set up similar environment ?

my apache configs are as this:

subdomain: admin.suporte.franca.unesp.br
#mod do endereco de suporte
(/etc/apache2/sites-available/admin.suporte.franca.unesp.
br)
#
<VirtualHost *:80>
        ServerAdmin cgo...@franca.unesp.br
        ServerName  admin.suporte.franca.unesp.br
        ServerAlias admin.suporte.franca.unesp.br

        # Indexes + Directory Root.
        DirectoryIndex /otrs/index.pl
        DocumentRoot /opt/otrs/bin/cgi-bin/

        # CGI Directory
        # ScriptAlias /otrs/ /opt/otrs/bin/cgi-bin/
        <Location /otrs>
        SetHandler perl-script
                PerlResponseHandler ModPerl::Registry
                PerlOptions +ParseHeaders
                PerlSetupEnv On
        </Location>

    <Directory />
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        AllowOverride None
        AddHandler cgi-script .pl
    </Directory>

        # Logfiles
        ErrorLog  /var/log/otrs/admin/error.log
        CustomLog /var/log/otrs/admin/access.log combined
</VirtualHost>


subdomain suporte.franca.unesp.br :
#mod so endereco de suporte (/etc/apache2/sites-available/
suporte.franca.unesp.br)
#
<VirtualHost *:80>
        ServerAdmin cgo...@franca.unesp.br
        ServerName  suporte.franca.unesp.br
        ServerAlias suporte.franca.unesp.br

        # Indexes + Directory Root.
        DirectoryIndex /otrs/customer.pl
        DocumentRoot /opt/otrs/bin/cgi-bin/

        # CGI Directory
        # ScriptAlias /otrs/ /opt/otrs/bin/cgi-bin/
        <Location /otrs>
        SetHandler perl-script
                PerlResponseHandler ModPerl::Registry
                PerlOptions +ParseHeaders
                PerlSetupEnv On
        </Location>

    <Directory />
        AllowOverride None
                Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        AddHandler cgi-script .pl
    </DirectOry>

        # Logfiles
        ErrorLog  /var/log/otrs/customer/error.log
        CustomLog /var/log/otrs/customer/access.log combined
</VirtualHost>

but both opens the index.pl file...

iv also used this thread as refference:
http://lists.otrs.org/pipermail/otrs/2005-October/009192.html

but seems quite old, and only one vhost wont suit me for logging purposes.


-- 
[]'s
---------------------------------
Carlos Gomes
Assistente de Informática II - STI
skype: cgomes.unesp
55(16)3706-8783
UNESP/Franca - FCHS
---------------------------------------------------------------------
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs

Reply via email to