-
AuthorPosts
-
-
28. December 2020 at 6:55 - Views: 383 #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. December 2020 at 7:07 #10427
I suppose the same goes for „customer.pl“
-
13. January 2021 at 10:25 #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. February 2021 at 10:02 #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. October 2021 at 16:45 #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,
-
-
AuthorPosts
- You must be logged in to reply to this topic.