Skip to content

Instantly share code, notes, and snippets.

View alfhen's full-sized avatar

Alf alfhen

  • Copenhagen, Denmark
View GitHub Profile
@alfhen
alfhen / homestead_install_elastic_search.sh
Last active September 27, 2019 17:18
Install ElasticSearch on Laravel Homestead
# Login as root
sudo -s
# Update Aptitude
apt-get update
# Install Java
apt-get install openjdk-7-jre-headless -y
# Download and install Elasticsearch Public Signing Key
@alfhen
alfhen / install_imagick.sh
Created June 1, 2016 07:42
Installing ImageMagick for php5 on Ubuntu 14.04
sudo apt-get update
sudo apt-get install imagemagick -y
sudo apt-get install php5-imagick -y
sudo php5enmod imagick
sudo service php5-fpm restart