Dalton Wilcox
Dalton Wilcox
Don’t forget to add some salt to that hash.
deleted by creator
That’s what Emby thought.
I can’t read the word without thinking this.
Ah yes, Sharon Osbourne, the world-renowned philanthropist, human rights activist, and all-around class act.
Conservatives invented censorship.
I want to see more oligarchs on the receiving end of assassination plots
in movies. I really liked Day of the Jackal. More of that, please.
When in doubt, get hot and screw.
I see what you did there.
I have an extra chromosome. Do you want it?
like a monster
like a boss
fully backwards compatible
Kinky. I like it.
We have a name for that now.
DOGE?
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 and 3000
is the local port your service is listening on, and 80
is the public port your nginx server listens on. Everything that hits your nginx server at http://yourserver.com/
will proxy back to your local service at http://10.100.100.2:3000/
. Depending on what you’re hosting, you may need to add some things to the config.
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?
🤯
Some PVC tubing will start to shrink around 70°C. Can you get boiling water to it fast enough before it cools?
This is less of a Plasma problem and more of an Archlinux packaging problem.