Agent Deployment
Deploy our Zero-Trust architecture in your own infrastructure in under 5 minutes. The agent will intercept TCP traffic without modifying your code.
Get your License Key
Once you purchase a plan, log into the Control Plane and copy your unique production credential. This key will link your local agent with our cloud policies.
Start the Container (Docker)
Run the following command on your server (EC2, VPS, or Kubernetes). Make sure to replace the values with your actual database credentials.
docker run -d \
--name privacy-proxy \
-p 8080:8080 \
-e LICENSE_KEY="YOUR_LICENSE_KEY_HERE" \
-e CONTROL_PLANE_URL="https://api.privacyproxy.app" \
-e DB_HOST="your-real-db.com:5432" \
-e DB_ENGINE="postgres" \
privacyproxy/agent:latestRedirect your App Traffic
Now that the Agent is running, change your backend connection URL (Node, Python, Java) to point to the local proxy port (8080) instead of the direct database.
postgres://user:pass@db-real.com:5432/mi_dbpostgres://user:pass@localhost:8080/mi_dbManage in Real Time
Done! Your application is now protected. Log into the Control Plane to inject masking rules or block destructive queries. The Agent will sync new rules in max 10 seconds, no restart required.