

I’m assuming that you are trying to proxy an http web server. If not, you’re going to have a hard time with nginx. Can you post your nginx config? Are you getting any response from nginx at all?
I’m assuming that you are trying to proxy an http web server. If not, you’re going to have a hard time with nginx. Can you post your nginx config? Are you getting any response from nginx at all?
Send GNUdes.
They’re not really in financial trouble. They just need more money to develop new tools to compete with industry standard software like Autodesk, Maya, Houdini, etc.
I too have never heard of Oregon City. I can only assume it’s in Oregon. The only thing I remember about the Oregon Trail is that I died from dysentery every time I followed the trail.
Who do you call when it’s the police doing the harassing?
Here’s a good place to start:
gpg --gen-key
Then follow the prompts.
This is patently false. Secure boot and hibernation are not mutually exclusive.
Zee shell ist die beste.
I think you’re conflating shells and terminals.
Is this a Demolition Man joke?
xz --version
So much whoooosh
Let me decentralize my shit…
Isn’t that why it’s a web of trust, and not a center of trust? I think you might be confusing that with public key infrastructure.
Also, you can’t decentralize your shit without a second party. That’s kind of the point.
I didn’t have a gigabyte mobo, but I use fancontrol-gui:
I like cryfs for this purpose:
Kubernetes? I’ve never even seen her netes.
Sounds like any calendar.
What are the quantum computers running? Also, please tell me they can run Doom.
date '+%Y is the year of the Linux desktop'
Assuming your local service is accessible from the nginx server, you can proxy the request to it:
server { listen 80; location / { proxy_pass http://10.100.100.2:3000/; } }
…where
10.100.100.2
is your local IP on the VPN and3000
is the local port your service is listening on, and80
is the public port your nginx server listens on. Everything that hits your nginx server athttp://yourserver.com:80/
will proxy back to your local service athttp://10.100.100.2:3000/
. Depending on what you’re hosting, you may need to add some things to the config.