Deeplinking issue

4
I deployed my app from local to a hosted environment (linux). In my app I use the deep linking module. When I now enter the link, an error appears: 404 Not Found nginx/0.7.67 Does anybody know how to solve it?
asked
3 answers
4

According to the deeplink documentation, check the installation header, you've to proxy the link:

Installation
Proxy the /link path

In production environments, where static content is served by an seperately configured webserver (such as IIS or Apache), the link/ path needs to be proxied to the Mendix Server as well (similar to the xas/ and ws/ paths). Forgetting to do so will result in 404.



This step is not required when running the application from the Modeler or Eclipse, since all content will be served by the Mendix Server automatically.
answered
2

nginx usually means you have to adjust your server's firewall to open up www.myapp.com/link/* forwarding.

answered
2

(assuming you're on debian): What do /var/log/nginx/error.log and /var/log/nginx/access.log say?

answered