Xdata server with Nginx

Any one run an Xdata server with Nginx in Linux?

As far as I know, you don't run the XData (or any other API) server in nginx itself. You run your server as an Apache module, or stand alone using Indy-based server, and then put nginx in front of it and configure it to properly forward requests to the "internal" API server.

1 Like
I have configure Nginx , Xdata to run as  proxy

location /Xdata{
            proxy_pass http://localhost:8080/api/xdata;
       
        }

1 Like

This topic was automatically closed 60 minutes after the last reply. New replies are no longer allowed.