Selfhosted
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.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
Sounds like you don't have port forwarding setup.
I highly recommend setting up Nginx Proxy Manager and using it as a reverse proxy.
I have lots of services, but using a reverse proxy means I only have to expose 2 ports (80 & 443) and then I can serve whatever I want, like Plex, over https without a relay.
How do you set this up to forward properly? Do you use different domains for different services? like plex.example.com?
I currently have nginx set up to forward based on port, which is fine for me, but it could be a little better.
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 toawesomedomain.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.