uPhone installation before uContact v6.440
uConatact’s uPhone is not included by default on installations before v6.440, we have to add it manually for being able to use salesforce plugin.
Make sure you have updated uContact to version 6.440 or superior.
We have to configure nginx to make uphone a public path
Add to the file “/etc/nginx/sites-enabled/default” the following content
location /uphone {
add_header Access-Control-Allow-Origin "*";
add_header Access-Control-Allow-Headers "*";
add_header Strict-Transport-Security "max-age=31536000; includeSubDomains" always;
alias /etc/IntegraServer/web/uphone/;
try_files $uri $uri/ /uphone/;
}