-
Nginx ssh port forwarding can not be achieved via http based port forwarding. It should be done via stream proxying. For details, please check:
https://stackoverflow.com/questions/71789156/how-to-redirect-ssh-requests-in-nginx
-
Nginx ssh port forwarding can not be achieved via http based port forwarding. It should be done via stream proxying. For details, please check:
https://stackoverflow.com/questions/71789156/how-to-redirect-ssh-requests-in-nginx
Yep, you are right. I had to set up stream block and right ports on VPS and nginx, and after that all is fine. Thank you!
-
Previous Value Current Value Open
Closed
| Type |
Question
|
| Priority |
Normal
|
| Assignee |
Issue Votes (0)
I'am using next docker containers stack: Nginx, OneDev, MariadB, Adminer. And try to clone repo with SSH protocol, but this is not work for me. I get warning: "fatal: '/test_project' does not appear to be a git repository".
I found in similar issue (issue onedev/server#1136), Nginx is not forwarding request from 22 port of Host to 6611 port of 1dev. Then i added rule in server block of Nginx:
And set next settings in OneDev instance:
But it still doesn't work. What am i doing wrong?