Viewing 1 reply thread
  • Author
    Posts
    • #14558

      Hello, I want to create two links one for customers  ( https://helpdesk.company.local ) and one for agents (https://otobo.company.local ) but I can’t set up forwarding from https://helpdesk.company.local  to default page

      https://helpdesk.company.local/otobo/customer.pl

      I use docker installation + nginx as frontend web server. Rewrite rules doesn’t help.

    • #14950
      kps
      Participant

        Hi grumpy_kot,

        What error are you getting or what exactly says the nginx is not working?
        would you like to share your configuration with us? i have set up a nginx and an otobo for testing. It seems to work for me. Here is an example with a very minimalist configuration:


        server {
        listen 80;
        server_name customer.test.local;

        rewrite (^/$) /otobo/customer.pl permanent;
        location / {
        proxy_pass http://localhost:8080;
        }
        }

        Best regards,

        ~ kps

    Viewing 1 reply thread
    • You must be logged in to reply to this topic.