SSH Reverse Proxy Tunnel (Postman)

WhoAmI => notes.sohag.pro/author
Search for a command to run...

WhoAmI => notes.sohag.pro/author
No comments yet. Be the first to comment.
You have new Linux PC with fresh apache2 installation. Now you don't know how to point to your Laravel site? Let's follow the below steps. Add your desired domain name in /etc/hosts (example: myblog.test you can give anything here and you should put ...
I had a solid list of reasons my life wasn't moving faster, until a grainy old lecture pointed out the one name missing from it

The finale isn't a victory lap. It's the story of the control I shipped that did nothing, the footgun still sitting in my demo, and the handful of things I'd keep exactly as they are.

How do you hold a large payment for a second pair of eyes without ever letting the unapproved money touch a balance, and how do you stream that decision to the outside world without standing up a broker?

How do you show the total under a parent account when the whole system refuses to store a balance? A recursive query, a trigger that refuses to draw a circle, and a rule about what actually has to sum to zero.

Every time I wanted to change an FX rate I had to edit a file on the server and restart the app. So I moved rates and markup into a live admin API, and then audited it hard enough to find the bug that quietly undid the whole thing.

Suppose you have to test some API. But the APIs can be accessed from your staging server only. How can you test those APIs from your local PC?
Hmm, A big problem. But it has a small solution. You can follow the steps below.
Install proxy package if not installed:
npm install -g http-proxy-to-socks
Add port listener for your remote server (here we are opening 5001 port)
ssh -D 5001 -i private_key.pem server_user_name@server_ip
Forward socket requests to 5001 port (It’ll capture requests from port 8080)
hpts -s 127.0.0.1:5001 -p 8080
Setup postman proxy
Postman settings > Proxy > Add custom proxy > 127.0.0.1:8080
Uncheck use system proxy