8088端口映射到外网可以登录ssh资产,反代成38088后无法登陆ssh资产
shawlxin opened this issue · 4 comments
shawlxin commented
OtaMegane commented
我也遇到了一样的问题 请问最后有解决吗
我这里除了SSH会报和你一样的错误 RDP会报远程服务未找到 这样搞只能在内网访问意义就不大了
shawlxin commented
我也遇到了一样的问题 请问最后有解决吗 我这里除了SSH会报和你一样的错误 RDP会报远程服务未找到 这样搞只能在内网访问意义就不大了
//最后我是外网走http访问的,放弃了https,个人认为可能是这个项目不支持反代套上https,或者本人的https证书是无效的
OtaMegane commented
我也遇到了一样的问题 请问最后有解决吗 我这里除了SSH会报和你一样的错误 RDP会报远程服务未找到 这样搞只能在内网访问意义就不大了
//最后我是外网走http访问的,放弃了https,个人认为可能是这个项目不支持反代套上https,或者本人的https证书是无效的
我证书倒是没问题 只能走http还是有点膈应
OtaMegane commented
@shawlxin
朋友 我用nginx进行反向代理成功了 实现了外网的HTTPS访问 不再报错 以下是代码供参考
`
HTTPS server
#
server {
listen **_port_** ssl;
server_name localhost;
ssl_certificate cert.pem;
ssl_certificate_key cert.key;
ssl_session_cache shared:SSL:1m;
ssl_session_timeout 5m;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
location / {
proxy_pass http://**_IP_** : **_port_**;
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-Forwarded-Proto $scheme;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
}
}
`