We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ sudo groupadd sftp $ sudo usermod -g sftp yournewuser
$ sudo nano /etc/ssh/sshd_config
Change the /etc/ssh/sshd_config
/etc/ssh/sshd_config
# override default of no subsystems #Subsystem sftp /usr/lib/openssh/sftp-server # 👇 Subsystem sftp internal-sftp
Add this to the end of the /etc/ssh/sshd_config
Match group sftp X11Forwarding no ChrootDirectory %h AllowTcpForwarding no ForceCommand internal-sftp
⚠️ All directories up to the user root must be owned by root with permissions 755
$ sudo chown root: /var/www/vhosts/USERSHOME $ sudo chmod 755 /var/www/vhosts/USERSHOME
$ sudo service ssh restart
To disable the bash entirely for this user, you can run $ sudo usermod -s /bin/false USER
$ sudo usermod -s /bin/false USER
Reference: https://shapeshed.com/chroot-sftp-users-on-ubuntu-intrepid/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. Create the sftp group and put desired user to that group.
2. Update the SSH settings
$ sudo nano /etc/ssh/sshd_config
Change the
/etc/ssh/sshd_config
Add this to the end of the
/etc/ssh/sshd_config
3. Check the permissions
4. Restart SSH
$ sudo service ssh restart
5. Optional
To disable the bash entirely for this user, you can run
$ sudo usermod -s /bin/false USER
Reference: https://shapeshed.com/chroot-sftp-users-on-ubuntu-intrepid/
The text was updated successfully, but these errors were encountered: