Skip to content

Instantly share code, notes, and snippets.

@vivianspencer
Last active August 18, 2016 14:20
Show Gist options
  • Save vivianspencer/43139b0dee467d4d39f0 to your computer and use it in GitHub Desktop.
Save vivianspencer/43139b0dee467d4d39f0 to your computer and use it in GitHub Desktop.
Debian 8 (Jessie) LEMP Setup

Debian 8 LEMP

  1. Set the hostname of the server

    hostnamectl set-hostname johnsmith
    
  2. Make the hostname resolvable. Open the file /etc/hosts in your favourite editor and assign the IPv4 & IPv6 records of the server to your chosen hostname & FQDN.

    127.0.0.1       localhost.localdomain   localhost
    12.34.56.78     johnsmith.example.com johnsmith 
    1234:5678::abcd:efgh:1234:5678      johnsmith.example.com johnsmith
    
    # The following lines are desirable for IPv6 capable hosts
    ::1     localhost ip6-localhost ip6-loopback
    ff02::1 ip6-allnodes
    ff02::2 ip6-allrouters
    
  3. Fix Perl locale complaints.

    locale-gen en_US.UTF-8
    dpkg-reconfigure locales
    
  4. Open ~/.bashrc in your favourite editor and add the following

    export LANGUAGE=en_US.UTF-8
    export LANG=en_US.UTF-8
    export LC_ALL=en_US.UTF-8
    
  5. Set the system timezone

    dpkg-reconfigure tzdata
    
  6. Install ufw firewall

    apt-get install ufw
    
  7. Setup default firewall rules, where port 22 is your ssh port and 15.15.15.51 is an internal ip address

    sudo ufw allow from 15.15.15.51  to any port 22
    sudo ufw allow http
    sudo ufw allow https
    
  8. Update Debian repository sources. Open the file /etc/apt/sources.list in your favourite editor and update to look like the below

    deb http://mirrors.linode.com/debian/ jessie main contrib non-free
    deb-src http://mirrors.linode.com/debian/ jessie main contrib non-free
    
    deb http://mirrors.linode.com/debian-security/ jessie/updates main contrib non-free
    deb-src http://mirrors.linode.com/debian-security/ jessie/updates main contrib non-free
    
    # jessie-updates, previously known as 'volatile'
    deb http://mirrors.linode.com/debian/ jessie-updates main
    deb-src http://mirrors.linode.com/debian/ jessie-updates main
    
  9. Get the latest updates and install

    apt-get update && apt-get upgrade --show-upgraded
    
  10. Add MariaDB repository

    apt-get -y install python-software-properties software-properties-common
    apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xcbcb082a1bb943db
    add-apt-repository 'deb http://lon1.mirrors.digitalocean.com/mariadb/repo/10.1/debian jessie main'
    
  11. Install all necessary componenets for this setup

    apt-get update && sudo apt-get upgrade --show-upgraded
    apt-get -y install sudo curl git debsums nginx php5 php5-curl php5-gd php5-cli php5-fpm php5-mysqlnd mariadb-server zsh unattended-upgrades mailutils ssmtp
    
  12. Create a user and set the groups to sudo and www-data for system and apache access

    adduser exampleuser
    usermod -a -G sudo,www-data exampleuser
    
  13. Switch the newly created user and set ZSH as the default shell

    su exampleuser
    cd ~
    curl -L http://install.ohmyz.sh | sh
    chsh -s /usr/bin/zsh
    mkdir .ssh
    
  14. Copy your secure key from your desktop

    scp ~/.ssh/id_rsa.pub exampleuser@123.456.78.90:~/.ssh/authorized_keys
    
  15. Setup the secure key for secure access

    chmod 700 .ssh
    chmod 600 .ssh/authorized_keys
    
  16. Create a new SSH key for the user

    ssh-keygen -t rsa -C "info@example.com"
    eval "$(ssh-agent -s)"
    ssh-add ~/.ssh/id_rsa
    
  17. Make SSH secure. Open /etc/ssh/sshd_config in your favourite editor and apply the following settings

    PasswordAuthentication no
    PermitRootLogin no
    
  18. Restart SSH (Make sure you keep a session open in case soemthing goes wrong)

    sudo service ssh restart
    
  19. Install Composer server wide

    curl -sS https://getcomposer.org/installer | php
    sudo mv composer.phar /usr/local/bin/composer
    
  20. Secure MariaDB by running the following command and following the instructions

    sudo mysql_secure_installation
    
  21. Open /etc/php5/fpm/php.ini in your favourite editor and change the the settings below:

    upload_max_filesize = 100M
    date.timezone = Europe/London
    
  22. Enable unattended upgrades

    sudo dpkg-reconfigure -plow unattended-upgrades
    
  23. Add SMTP settings to allow mail to be sent. Open /etc/ssmtp/ssmtp.conf in your favourite editor and add the settigns below:

    FromLineOverride=YES
    
    AuthUser=info@gmail.com
    AuthPass=PASSWORD
    mailhub=smtp.gmail.com:587
    UseSTARTTLS=YES
    
  24. Install MySQLtuner

    sudo wget http://mysqltuner.pl/ -O /usr/local/bin/mysqltuner
    sudo chmod +x /usr/local/bin/mysqltuner
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment