Activation SFTP chroot and filemanager
sudo nano /usr/local/vesta/conf/vesta.conf
Add lines
FILEMANAGER_KEY='mykey' SFTPJAIL_KEY='mykey'
Save the edited file: press Ctrl + X and confirm the changes. That’s all done! We enter VestaCP and verify the presence of the “files” button in the top menu. In some cases, the button does not appear and you have to go into the server settings (: 8083 / edit / server /) and see if the keys are up.
Remove license check
sudo nano /usr/local/vesta/bin/v-activate-vesta-license
# Activating license v_host='https://vestacp.com/checkout' answer=$(curl -s $v_host/activate.php?licence_key=$license&module=$module) check_result $? "cant' connect to vestacp.com " $E_CONNECT
We comment on each line (put # at the beginning of the line) and add another answer = 0
# Activating license #v_host='https://vestacp.com/checkout' #answer=$(curl -s $v_host/activate.php?licence_key=$license&module=$module) #check_result $? "cant' connect to vestacp.com " $E_CONNECT answer=0
We comment one more line in another file:
sudo nano /usr/local/vesta/bin/v-backup-users #$BIN/v-check-vesta-license >/dev/null
Similar Posts:
- How to install WHMCS module for VestaCP
- Laravel site template for VestaCP
- How to replace vsftpd with ProFTPD on a Debian or Ubuntu
- Config and log locations on a Debian and Ubuntu on VestaCP
- How to install multiple PHP versions on VestaCP
2,679