...
Installation Troubleshooting
Lighting web security
Salesforce released a beta configuration that causes in some cases errors with the OpenAPI module in Salesforce. The image below shows how to disable the feature.
...
404 error
If you get a 404 error entering on the uphone ucontact URL, you must add manually the following rule on the nginx configuration file, located on /etc/nginx/sites-enabled/default
Code Block |
---|
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/;
} |