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.
-
No low-effort posts. This is subjective and will largely be determined by the community member reports.
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 good.
Hmm next you probably should confirm ports 80 and 443 are actually reachable from the internet.
Use an online port checker like https://canyouseeme.org/
After that you should check your apache config like somebody else already suggested. I haven't used apache in a while but if I remember correctly:
Ensure it says: Listen 80 NOT: Listen 127.0.0.1:80
(and same with 443)
Also check your VirtualHost — it should look something like:
(and same with 443)
Okay, great. So I checked all the config files, and everything seems to be in order there. But when I used an online port checker (I used yougetsignal.com), it said ports 80 and 443 are both closed. So the problem must be with my router, right?
The problem could be anywhere in between the internet and your server.
Ofc. it could be your routet. But I think the following is more likely:
It might also be your internet service provider that doesn't allow those ports for inbound connections.
Or you're behind a CGNAT so your real external ip is different from the one you think it is. (look up online how to test this)
That was it! I was behind a CGNAT! Thank you so much. I created a Cloudflare tunnel, and boom. I am now able to access the domain from my phone without wifi. Thank you, thank you, thank you. I still have some configuration to do, but the main issue has been resolved. You are an angel.