Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am clerie on github.
  • I am clerie (https://keybase.io/clerie) on keybase.
  • I have a public key ASDaTRPN-p2K0la9t7FsbnC_SLGQVXVYLei_MPs5pSQosAo

To claim this, I am signing this object:

@clerie
clerie / raspbian-webserver-install.sh
Last active September 18, 2017 16:22
Install Webserver with PHP and MySQL easy
# Insatall Webserver on Raspbian
sudo apt-get update
sudo apt-get install apache2 -y
sudo apt-get install php5 libapache2-mod-php5 -y
sudo apt-get install mysql-server php5-mysql -y
sudo service apache2 restart
ln -s /var/www/html/ /home/pi/html
sudo chmod a+rwx /var/www/html