this post was submitted on 01 Nov 2025
158 points (93.9% liked)

Selfhosted

52735 readers
795 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.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. 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.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

Hey friends. I finally fired nextcloud - and so should you.

edit: wow. reddit banned me for posting a link to my (completely unmonitezed, unproductized) blog in multiple r/selfhosted threads. I bet it's related to this lemmy link

you are viewing a single comment's thread
view the rest of the comments
[–] LemmyPlay@lemmings.world 6 points 3 days ago (1 children)

Thanks for putting this together. I have been dragging my feet on self-hosting NextCloud, and now it looks like that procrastination may just work out in my favor.

One question, can I just run this on localhost and access through my local network instead of using a reverse proxy? If so, how? That's all I need, I don't use a reverse proxy now and would be fine just using a self-hosted VPN to access it when away from my private network. The docs make it seem like there is pretty stringent requirements on having to use a reverse proxy and certs, etc which was the same 'issue' I had with NextCloud. I guess I'm the minority here, but curious if anyone can help answer.

[–] rtxn@lemmy.world 8 points 3 days ago* (last edited 3 days ago) (1 children)

You can absolutely use it without a reverse proxy. A proxy is just another fancy HTTP client that contacts the server on the original client's behalf and forwards the response back to it, usually wrapped in HTTPS. A man in the middle that you trust.

All you have to do is expose the desired port(s) to all addresses:

# ...
  - ports:
    - 8080:8080

...and obviously to set the URL environment variables to localhost or whatever address the server uses.