• 0 Posts
  • 23 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle

  • Yes, I use subdomains.

    I pay for one domain name in Cloudflare (e.g. awesomedomain.com), and have a single “A” record pointing to the public IP of my server, and a single “CNAME” record with a value of * that points to awesomedomain.com.

    That way, any subdomain gets directed to the server, and then you setup Nginx Proxy Manager to listen for certain subdomains and where to proxy them. No need to manage any further DNS records in Cloudflare, and any changes made on the proxy don’t need any wait time for DNS records to propagate.

    Nginx Proxy Manager also handles automatic SSL certs through Let’s Encrypt - I really can’t recommend it enough.

















  • Yep, I use cloudflare for DNS and just have 2 records configured there:

    • A record - example.com points to 192.168.1.100
    • CNAME - *.example.com is an alias of example.com

    The IP address above being the address of Nginx Proxy Manager, where I configure whatever subdomains I need for my local services.