Back to home
Quick Start Guide

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.

1

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.

2

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.

Terminal
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:latest
3

Redirect 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.

Before (Insecure)postgres://user:pass@db-real.com:5432/mi_db
Now (Zero-Trust)postgres://user:pass@localhost:8080/mi_db
4

Manage 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.