ajenti 901 B

12345678910111213141516171819202122232425262728293031323334353637
  1. #Insall Ajenti
  2. apt-get update
  3. wget http://repo.ajenti.org/debian/key -O- | apt-key add -
  4. echo "deb http://repo.ajenti.org/ng/debian main main debian" >> /etc/apt/sources.list
  5. apt-get update
  6. apt-get install ajenti
  7. service ajenti restart
  8. # Uninstall Apache2
  9. sudo apt-get autoremove && sudo apt-get remove apache2*
  10. # Install Ajenti-v
  11. apt-get install ajenti-v ajenti-v-nginx ajenti-v-mysql ajenti-v-php-fpm php7.4-mysql
  12. # If you <3 Ruby
  13. apt-get install ajenti-v-ruby-unicorn ajenti-v-ruby-puma
  14. # If you need Python
  15. apt-get install ajenti-v-python-gunicorn
  16. # If you need nodeJS
  17. apt-get install ajenti-v-nodejs
  18. # If you want FTP
  19. apt-get install ajenti-v-ftp-pureftpd
  20. # If you want mail
  21. apt-get install ajenti-v-mail
  22. # If you want POP support (for gmail etc.)
  23. apt-get install courier-pop
  24. # Restart All Services
  25. sudo service php7,4-fpm restart
  26. sudo service nginx restart
  27. sudo service ajenti restart