Skip to content

Instantly share code, notes, and snippets.

@trevorgreenleaf
Created January 20, 2014 01:14
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save trevorgreenleaf/8513341 to your computer and use it in GitHub Desktop.
Save trevorgreenleaf/8513341 to your computer and use it in GitHub Desktop.
Installing Laravel on Media Temple GS
Go into domain folder
transfer or run a new install of laravel
git clone https://github.com/laravel/laravel example.com && cd example.com
// get composer
curl -sS https://getcomposer.org/installer | php -d allow_url_fopen=On
// install composer
php -d allow_url_fopen=On composer.phar install
// generate a key for laravel
php artisan key:generate
// change the path of the public to html
mv public html
Update the bootstrap paths.php to point to html instead of public
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment