Search found 1 match

by bverhalleman
Thursday 20 September 2018 11:59
Forum: Speech & Voice Systems
Topic: Controlicz and NGINX
Replies: 1
Views: 2385

Re: Controlicz and NGINX

Hi

I just encountered the same problem. It looks like Controlicz doesn't like the /domo suffix. I ended up in configuring it like this

# Domo
location / {
proxy_pass http://192.168.1.90:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}

# Otherapp
location /otherapp ...