Has anyone tried to use IPN on more than 80 port ports?
I am trying to specify a URL, but the IPN is not being requested.
If I hit the URL directly from my browser then it works fine.
If you have a nginx server with the possibility of accessing it by ssh, you can do this Are:
Start the SSH reverse proxy:
ssh -nvv -o tcpkeepAlive = yes -r 3000: localhost: 3000 username@your-server.com
Add Nginx Config Proxy for a port at 3000 port 80:
server {80; Server_name your-app.your-server.com; Location / {proxy_pass http: // local host: 3000; Host $ proxy_set_header host; Proxy_set_header X-real-IP $ remote_adder; Proxy_set_header X-Forward- $ proxy_add_x_forwarded_for; Proxy_set_header-verify X-Client-SUCCESS; Proxy_read_timeout 1800; Proxy_connect_timeout 1800; }}
Comments
Post a Comment