this post was submitted on 13 Nov 2023
3 points (100.0% liked)

Self-Hosted Main

502 readers
1 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

For Example

We welcome posts that include suggestions for good self-hosted alternatives to popular online services, how they are better, or how they give back control of your data. Also include hints and tips for less technical readers.

Useful Lists

founded 1 year ago
MODERATORS
 

One perk that someone told me about is that you can use your domain to get around not having a static IP (because the DNS will compensate).

If I were to get a Cloudflare domain name then what would be some other pros and cons?

you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 3 points 10 months ago (2 children)

> One perk that someone told me about is that you can use your domain to get around not having a static IP (because the DNS will compensate).

No this wont really help you with that. A domain name ('A' record in a DNS provider such as Cloudflaire) is simply a pointer to an IP address. If you configure this with a non-static address (e.g. your public IP provided by your ISP) then this will at somepoint change and therefore no longer resolve. You would then need to manually update the IP in the DNS record each time.

There are services you can run locally to automate this update (check on your router) called Dyanmic DNS. DDNS will basically call a configured endpoint to automate the change.

> If I were to get a Cloudflare domain name then what would be some other pros and cons?

Personally I set up an A record to point my domian `mydomain.com` to a local IP (19.168.1.x) which is running NGINX proxy manager. With a wildcard CNAME such as `*.mydomain.com` I can add all my local services in NPM with valid letsencrypt certificates.

Now I never need to use IP's/ports as I can:

- Access all my local services via valid SSL certs

- Manage them in a single place (NGINX proxy manager)

- Use nice looking URL's using subdomains (e.g `https://router.mydomain.com`)

- Same with email addresses. I can use `[email protected]` - which I have configured in Cloudflare to forward to my primary gmail account (Just add a `MX` entry).

[โ€“] [email protected] 1 points 10 months ago

I have the same setup except I'm using dynv6. Is there a guide I can follow to set this up?

load more comments (1 replies)