Can't make chroot work with sshd. after i put the correct password the window is closed
this is what i have in auth.log
Feb 20 14:24:44 host-37 sshd[7113]: pam_unix(sshd:session): session opened for user test by (uid=0)
Feb 20 14:24:45 host-37 sshd[7113]: pam_unix(sshd:session): session closed for user test
/etc/sshd_config
Match User test
ChrootDirectory /var/www/users/test
# AllowTCPForwarding no
# X11Forwarding no
this didn't work
# groupadd users
# usermod -d /test -G users test
# chown root:users /var/www/users
# chmod 750 /var/www/users; chmod g+s /var/www/users
# chown -R root:test /var/www/users/test
# chmod -R 770 /var/www/users/test; chmod g+s /var/www/users/test
vi /etc/ssh/sshd_config and change the path of ChrootDirectory for test to /var/www/users
# service sshd restart (or reload, whichever)