bin gerade dabei die URLs für OTRs zu ändern.
Aufruf soll nicht über https://domain.de/otrs/customer.pl laufen sondern direkt über https://domain.de
VHOST habe ich dafür nun schon konfiguriert der auch funktioniert nur taucht auf der Standardseite die index.pl also das AgentFrontend auf und nicht das Customer-Frontend.
Was muss ich ändern damit mein Customer-Frontend über https://domain.de erscheint?
Code: Select all
<VirtualHost name:443>
ServerName name
ServerAdmin webmaster@localhost
DocumentRoot /opt/otrs/var/httpd/htdocs
<Directory /opt/otrs/var/httpd/htdocs>
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
allow from all
</Directory>
SSLEngine On
SSLCertificateFile /etc/apache2/ssl.crt/name.crt
SSLCertificateKeyfile /etc/apache2/ssl.key/name.key
ErrorLog /var/log/apache2/error.log
LogLevel warn
CustomLog /var/log/apache2/access.log combined
ServerSignature On
</VirtualHost>