Setup ssh tunneling over http with /etc/httpd/conf.d/ssh.conf
<virtualhost>And ~/.ssh/config (no intermediate proxy)
ServerName ssh.parwy.net:80
DocumentRoot "/var/www/html"
HostnameLookups On
ProxyRequests on
AllowCONNECT 22
ProxyVia on
<proxy>
Order allow,deny
Allow from all
</proxy>
</virtualhost>
Host *.parwy.netor ~/.ssh/config (intermediate proxy)
DynamicForward 1080
ProxyCommand /cygdrive/c/sekhonp/tools/proxytunnel/proxytunnel.exe -p ssh.parwy.net:80 -d %h:%p
ServerAliveInterval 30
Host *.parwy.net
DynamicForward 1080
ProxyCommand /cygdrive/c/sekhonp/tools/proxytunnel/proxytunnel.exe -p proxyhost:proxyport -u proxyuser -s proxypassword -r ssh.parwy.net:80 -d %h:%p
ServerAliveInterval 30