Skip to content

Instantly share code, notes, and snippets.

@aalfiann
Forked from kn9/ajenti-v-php7.sh
Last active September 13, 2018 07:43
Show Gist options
  • Save aalfiann/f063fbe5c35352e1ec9eaa03284d5712 to your computer and use it in GitHub Desktop.
Save aalfiann/f063fbe5c35352e1ec9eaa03284d5712 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 Nginx Web Server with Ajenti with PHP 7.0
#Set Hostname
nano /etc/hostname
nano /etc/hosts
#set Timezone
dpkg-reconfigure tzdata
#reboot to refresh the hostname
reboot
#Install Ajenti
apt-get update
wget http://repo.ajenti.org/debian/key -O- | apt-key add -
echo "deb http://repo.ajenti.org/ng/debian main main ubuntu" >> /etc/apt/sources.list
apt-get update
apt-get install ajenti -y
service ajenti restart
# Uninstall Apache2
sudo apt-get autoremove && sudo apt-get remove apache2* -y
# Install Properties common
sudo apt-get install -y software-properties-common -y
# Add repository PHP7
sudo apt-add-repository ppa:ondrej/php
sudo apt-get update
# Install Ajenti-v
apt-get install ajenti-v ajenti-v-nginx ajenti-v-mysql ajenti-v-php7.0-fpm php7.0-mysql php7.0-curl php7.0-json php7.0-gd php7.0-curl php7.0-zip -y
# If you want FTP
apt-get install ajenti-v-ftp-pureftpd -y
# If you want mail
apt-get install ajenti-v-mail -y
# If you want POP support (for gmail etc.)
apt-get install courier-pop -y
# Restart All Services
sudo service php7.0-fpm restart
sudo service nginx restart
sudo service ajenti restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment