SFTP enabled Storage Account Behind Nginx Reverse Proxy
I am trying to put SFTP enabled storage Account behind nginx proxy.
I tried with the below configuration in nginx.conf
nginx service won’t restart as port 22 is already in use for SSH.
Can someone help me?
I am trying to put SFTP enabled storage Account behind nginx proxy. I tried with the below configuration in nginx.confstream { upstream backend{ server <<storageAccount_private_ip>>:22; } server {listen 22; proxy_pass backend; }}nginx service won’t restart as port 22 is already in use for SSH. Can someone help me? Read More