Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
stevekemp
on June 10, 2021
|
parent
|
context
|
favorite
| on:
Show HN: A tool to self host game servers with a f...
I'd look at using an SSH reverse tunnel. If you can connect from the plex-server to a server hosted on EC2, Linode, DigitalOcean, etc, you could expose the service from that.
Something like:
ssh -f -N -T -R 8080:localhost:80 user@external.example
Now access to your remote host on port 8080 will be mapped back to your home machine, behind the NAT. You could install nginx as a proxy for it, etc.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
Something like:
Now access to your remote host on port 8080 will be mapped back to your home machine, behind the NAT. You could install nginx as a proxy for it, etc.