this post was submitted on 10 Jan 2024
16 points (90.0% liked)

Selfhosted

39254 readers
197 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 1 year ago
MODERATORS
16
submitted 8 months ago* (last edited 8 months ago) by [email protected] to c/[email protected]
 

I have been hosting a few websites from my home server and it has taught me a lot. I have recently had major issues with the electrical storms, Kogan NBN support (Australia), and the NBN network in general. I know 4g is not fast, but I would like to use it so that in the event of a network outage, im not at the mercy of NBN. On to the question!

I run pfsense in hyper v with a 4 port nic which passes through those ports to pfsense.

I realized that 4g ip addresses are not public, which stops me from hosting the websites.

Reading into wireguard and vpn services my plan is to:

  • Set up a VPS ✅
  • Set up wireguard on the VPS ✅
  • Create a wireguard connection on my windows server, and pass that in as an interface to pfsense, so that hopefully, I wont need to change to much on my internal infrastructure.

Does this sound like an OK plan? I'm open to any other ideas where I can achieve the following:

web app >> nginx >> pfsense >> vpn tunnel >> VPS with Public IP (can be dynamic)

Thanks!---

all 17 comments
sorted by: hot top controversial new old
[–] [email protected] 12 points 8 months ago (2 children)

If you're buying a VPS why not host the website there?

[–] [email protected] 4 points 8 months ago (1 children)

Good question, I will want to host more in the future, im trying to keep costs as low as possible.

[–] [email protected] 7 points 8 months ago

Depending on what you are trying to host and where you live power usage and your own hardware might be more expensive than the VPS you require to host those.

[–] [email protected] 1 points 8 months ago

This. Hosting at home might be cheaper if you are serving a lot of data, but in that case, the speed's going to kill you.

I'm a keen self-hoster, but my public facing websites are on a $4 VPS (Binary Lane - which I recommend since you're in Aus). In addition to less hassle, you get faster speeds and (probably) better uptime.

[–] [email protected] 7 points 8 months ago* (last edited 8 months ago) (1 children)

I know 4g is not fast, but I would like to use it

There was a time when people used to have 2400 bits per second from home (for the youngsters: that is 0.0003M). So if you are doing it for fun, why not.

[–] [email protected] 4 points 8 months ago

True, but everything is more bandwidth demanding these days, plus we're used to fast loading.

[–] [email protected] 4 points 8 months ago

Have you looked into Cloudflare Tunnel? It's a turnkey solution that does exactly what you want. No idea what the cost is though.

[–] [email protected] 3 points 8 months ago

You're on the right track. As long as wiregurd on the VPS will allow an incoming connection from you home 4g, which will probably be CGNAT, it'll work. Did you look into running the NGINX reverse on the VPS? I like terminating external stuff on cloud side, then only bring filtered or desired traffic over the tunnel.

[–] [email protected] 3 points 8 months ago* (last edited 8 months ago)

I mean I think it really depends on the type of website you're trying to host. A static blog would use way less bandwidth than a media server for example. Traffic would have the same effect too, where 1 concurrent visitor to a blog would probably be fine but 10,000 would be a problem.

[–] [email protected] 3 points 8 months ago

I'm using Headscale for something similar. I have a VPS and a server at home. Both are on the same Headscale network. On the home server I set up a Matrix server. On the VPS I set up Caddy as a reverse proxy for the home server with its Headscale IP. It works nicely.

I'm not on 4G, though.

[–] [email protected] 2 points 8 months ago (1 children)

I doubt this will be any use, but my Telstra 4G has a public IPv6.

[–] [email protected] 2 points 8 months ago

Thanks thats good to know! I have got onto tailscale and have a test lab setup with a digital ocean vps for the public IP(exit node) and a ubuntu machine with a tunnel to it. Its working, just need to translate that to pfsense...

[–] [email protected] 1 points 8 months ago

Sounds like a connection would work with that setup but it would depend on what you are planning on hosting. Anything that is sensitive to latency would probably not work well. Static sites should be fine though.

[–] [email protected] 1 points 8 months ago* (last edited 8 months ago)

Acronyms, initialisms, abbreviations, contractions, and other phrases which expand to something larger, that I've seen in this thread:

Fewer Letters More Letters
CGNAT Carrier-Grade NAT
IP Internet Protocol
NAT Network Address Translation
VPS Virtual Private Server (opposed to shared hosting)

3 acronyms in this thread; the most compressed thread commented on today has 5 acronyms.

[Thread #420 for this sub, first seen 10th Jan 2024, 13:15] [FAQ] [Full list] [Contact] [Source code]

[–] [email protected] 1 points 8 months ago

If you’re hosting websites and not applications, perhaps you can use SSGs like Hugo/Gatsby. You could deploy your site in a bucket and put cloudflare in front. They can also be used on your own server of course. If you are hosting applications and want to keep them on 4g, you could put a CDN (CloudFlare or …) in frint of it. That would cache all static resources and greatly improve response times.

[–] [email protected] 1 points 8 months ago

If you’re hosting websites and not applications, perhaps you can use SSGs like Hugo/Gatsby. You could deploy your site in a bucket and put cloudflare in front. They can also be used on your own server of course. If you are hosting applications and want to keep them on 4g, you could put a CDN (CloudFlare or …) in frint of it. That would cache all static resources and greatly improve response times.