serfreeman1337

Results 56 comments of serfreeman1337

`endpoint_addr` in **conf.yml** is listen address for asterlink's HTTP api web server. You can specify `0.0.0.0:5678` so asterlink will be accessibly on 5678 tcp port on every IP addresses of...

``` ProxyPass "/asterlink/ws/" "ws://172.16.34.21:5678/ws/" ProxyPass "/asterlink/" "http://172.16.34.21:5678/" ``` It's apache2 config. Usually located at _/etc/httpd/conf/httpd.conf_ or _/etc/apache2/apache2.conf_. ProxyPass can also be put inside `` config (_/etc/apache2/sites-available/000-default.conf_ etc.) for suitecrm, if...

On the SuiteCRM web-server. So, user will be able to reach asterlink via suitecrm webserver.

> give an error :404 page not found That's ok, `404 page not found` is from asterlink (if you access http://172.16.34.21:5678/ you will get same result). At this point you...

Here is correct proxy configuration (note the trailing / for proxy_pass): ``` location /asterlink/ws/ { proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header Host $host; # enable WebSockets proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header...

Is it still fails because of "404" ? Please check network tab on browser developer tools, it should show requests to myasterlink.myserver.lan. Does click2call work ?

Can you show /asterlink/ws request ? Select "WS" on network tab to filter. If it shows 403, then make sure that "endpoint_token" in conf.yml and "Token" in suitecrm module settings...

> When I call to 478XXXXXX from SuiteCRM (my extension "2002") on my softphone I receive the call from my extension and when accept the incoming call the call going...

> When the call operator receiving a call I can not see the popup card´s. Does incoming call register in suitecrm's "call log" ? If not, check incoming context, it...

> trunks context "from-trunk". You need to update `incoming_context` to `from_trunk` in **conf.yml**: ```yaml dialplan: dial_context: from-internal ext_context: - macro-dial-one - macro-dial incoming_context: - from-trunk outgoing_context: - macro-dialout-trunk log_level: trace...