-
AutorBeiträge
-
-
28. Dezember 2020 um 6:55 Uhr - Views: 384 #10426
I am trying to configure Otobo to use…
support.mydomain.org
…instead of…
support.mydomain.org/otobo/index.plI’ll even settle for…
support.mydomain.org/index.plIs this possible? Thank you.
-
28. Dezember 2020 um 7:07 Uhr #10427
I suppose the same goes for „customer.pl“
-
13. Januar 2021 um 10:25 Uhr #10534
I simply adapted the nginx configuration to redirect a plain request to the interface. In my case, the snippet is
# always redirect to agent interface
location ~ ^/$ {
return 301 https://$host/otobo/index.pl;
}
-
2. Februar 2021 um 10:02 Uhr #10804
Hello,
does anybody know about more elegant solution instead of simply redirecting? Also is there any chance to make to this possible without using nginx?
Thanks
-
17. Oktober 2021 um 16:45 Uhr #12036
It’s possible. I’ve done this.
Assuming that you will have the following:
- servicedesk.yourdomain.com – for the agent / management users
- support.yourdomain.com – for the customer users
You can use the following steps:
- Copy the original zzz_otobo.conf to zzz_servicedesk_otobo.conf
- Copy the original zzz_otobo.conf to zzz_support_otobo.conf
- Rename the zzz_otobo.conf to zzz_otobo.original
- Edit the zzz_servicedesk_otobo.conf and make the following changes (I’ll post only the relevant part of files, the original and the changed version):
Original
Changed version of zzz_servicedesk_otobo.conf:
Changed version of zzz_support_otobo.conf:
Don’t forget to add the closing tag
<strong></VirtualHost></strong>
on both files.- Change the ScriptAlias to empty value on SysConfig
I hope this helps.
Best regards,
-
-
AutorBeiträge
- Du musst angemeldet sein, um auf dieses Thema antworten zu können.