Deployment Guides & DNS Setup
Step-by-step instructions to connect your .devs.li subdomain to top hosting platforms.
1. Connect to GitHub Pages
Free static hosting with custom domain support- On DEVS.LI Dashboard, claim your subdomain with record type
CNAMEand targetusername.github.io. - In your GitHub Repository, navigate to Settings → Pages.
- Under Custom domain, enter
yourname.devs.liand click Save. - Wait for the DNS check to pass, then check Enforce HTTPS.
2. Connect to Vercel (Next.js / React)
Automatic edge network deployment and auto SSL- On DEVS.LI Dashboard, set your subdomain CNAME to
cname.vercel-dns.com. - In your Vercel Project dashboard, go to Settings → Domains.
- Enter
yourname.devs.liand click Add. - Vercel will verify the CNAME record and issue an SSL certificate within seconds.
3. Connect to Custom VPS (Nginx / Apache / Docker)
Direct A-record configuration to your IP address- On DEVS.LI Dashboard, select record type
Aand enter your VPS public IPv4 address (e.g.139.99.90.146). - In your server's Nginx configuration, add your virtual host:
server {
listen 80;
server_name yourname.devs.li;
location / {
proxy_pass http://127.0.0.1:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}