devs.li

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
  1. On DEVS.LI Dashboard, claim your subdomain with record type CNAME and target username.github.io.
  2. In your GitHub Repository, navigate to Settings → Pages.
  3. Under Custom domain, enter yourname.devs.li and click Save.
  4. 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
  1. On DEVS.LI Dashboard, set your subdomain CNAME to cname.vercel-dns.com.
  2. In your Vercel Project dashboard, go to Settings → Domains.
  3. Enter yourname.devs.li and click Add.
  4. 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
  1. On DEVS.LI Dashboard, select record type A and enter your VPS public IPv4 address (e.g. 139.99.90.146).
  2. 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;
    }
}