How can i deploy in custom hosting domain? #304
Replies: 2 comments
|
Hello I have a new hosting system where you can map a docker containers with a specific port with domain or subdomain with sll actually I have this https://vpscolombia.co:2785 |
|
Hi @sundarpolos — yes, you can absolutely run OpenWA on a custom domain. The short version: run OpenWA on a VPS, put a reverse proxy in front of it that terminates TLS, and point your domain at the proxy. hPanel-style shared hosting (Hostinger/Hostgator/cPanel) generally won't work because it doesn't give you a long-running process or Docker. What you need
Recommended setup: Caddy
services:
openwa:
image: ghcr.io/rmyndharis/openwa:latest
volumes:
- ./data:/app/data
restart: unless-stopped
# No port published — only the proxy talks to it
caddy:
image: caddy:2
ports:
- "80:80"
- "443:443"
volumes:
- ./Caddyfile:/etc/caddy/Caddyfile
- caddy_data:/data
restart: unless-stopped
volumes:
caddy_data:
Why not shared hPanel hosting?Shared hosting is built for PHP/HTML sites served by Apache/nginx the host controls. OpenWA is a long-running Node.js process that needs to hold open WebSocket connections to WhatsApp 24/7. That doesn't fit a per-request PHP-FPM model, and shared hosts usually don't allow custom daemons or Docker. Further readingWe have a step-by-step guide for Traefik and Coolify specifically in @dannylank — the URL you posted ( |
Uh oh!
There was an error while loading. Please reload this page.
is it possible to deploy this openwa in any hosting or hostinger domain hpanel with custom domain name to run always?
All reactions