有人试过在80以外的端口上使用Paypal的IPN吗?
我正在尝试指定http://domain.com:8080/url/to/ipn.php之类的网址,但IPN请求无法通过。
如果我直接从浏览器点击网址,则可以正常使用。
答案 0 :(得分:11)
在进行多项测试后,我能够确认PayPal的通知URL / notify_url不能包含非标准端口号。
这些网址将有效:
http://my.website.com:80/ipnpage.aspx
https://my.website.com:443/ipnpage.aspx
这些不起作用:
http://my.website.com:81/ipnpage.aspx
https://my.website.com:82/ipnpage.aspx
答案 1 :(得分:5)
如果你有nginx服务器可以通过ssh访问它,那么你可以这样做:
启动ssh反向代理:
ssh -Nvv -o TCPKeepAlive=yes -R 3000:localhost:3000 username@your-server.com
添加nginx配置以代理端口80上的端口3000:
server {
listen 80;
server_name your-app.your-server.com;
location / {
proxy_pass http://localhost:3000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Client-Verify SUCCESS;
proxy_read_timeout 1800;
proxy_connect_timeout 1800;
}
}