Reverse Proxy
Run Limyrx Studio IDE behind your own reverse proxy for custom domains, TLS, and access control.
Overview
Place nginx, Caddy, or Traefik in front of the IDE. The IDE speaks HTTP/WebSocket, so any proxy that supports those protocols works.
Configuration
Example nginx config:
server {
listen 443 ssl;
server_name ide.example.com;
location / {
proxy_pass http://localhost:8765;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}TLS/SSL
Terminate TLS at your proxy. The IDE can run without TLS on localhost, but remote access should always use HTTPS.