mirror of
https://github.com/azaion/ai-training.git
synced 2026-04-22 22:06:36 +00:00
17 lines
362 B
Bash
17 lines
362 B
Bash
sudo -s
|
|
apt update
|
|
apt upgrade
|
|
apt install -y ssh
|
|
|
|
groupadd sftp
|
|
useradd -g sftp -M -p Azaion1000sftp01 -d /azaion-media -s /bin/false sftpuser
|
|
|
|
cat <<EOT >> /etc/ssh/sshd_config
|
|
Match Group sftp
|
|
ChrootDirectory /azaion-media
|
|
X11Forwarding no
|
|
ForceCommand internal-sftp
|
|
AllowTcpForwarding no
|
|
PasswordAuthentication yes
|
|
EOT
|
|
service ssh restart |