this post was submitted on 20 Oct 2023
2 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
 

I do have my own web server running centos 7 i could use. I am planning to buy a small mini-pc that will be running home assistant and frigate for recording my camera's and integrating AI detection into my smart home. It seems the best installation for that is debian.

I have a router that is using a wireguard vpn, that does not allow port forwarding, so i need an alternative to access the mini-pc.

Now, of course there's some things to be found when googling, but my preference goes to the most easy-to-use solution as i'm not great with linux, i just mess around digging through configs, copy-pasting instructions and getting stuff done that way. This is why I wanted to ask you guys for advice =)

Would appriciate assistance!

you are viewing a single comment's thread
view the rest of the comments
[–] jerwong@alien.top 2 points 11 months ago (1 children)

Set up a reverse tunnel to the outside box that you want to get in from.

For example, from the inside machine:

ssh outsidemachine -R 2222:localhost:22

Then on your outsidemachine:

ssh -p 2222 localhost

Maybe run top or something just to keep traffic going across so that firewalls don't drop your connection.

[–] jwink3101@alien.top 1 points 11 months ago

This is what I've done too. I am almost certain it is less performant than some of the other options out there but I like that it is simple and using a tool I know. If this was a major use case of mine, I'd probably do more playing and get it working with something else but this works for now.

Also check out autossh and some of those tools