Skip to content

Instantly share code, notes, and snippets.

@jakedowns
Forked from val-bubbleflat/install.bash
Last active January 2, 2018 18:37
Show Gist options
  • Save jakedowns/89dd46bd3551d9214145533a1c7b1060 to your computer and use it in GitHub Desktop.
Save jakedowns/89dd46bd3551d9214145533a1c7b1060 to your computer and use it in GitHub Desktop.
Install V8Js on Laravel Forge
sudo add-apt-repository ppa:pinepain/libv8-archived
sudo apt-get update
sudo apt-get install libv8-5.2
sudo pecl install v8js
sudo su
echo "extension=v8js.so" >> /etc/php/7.0/fpm/php.ini
echo "extension=v8js.so" >> /etc/php/7.0/cli/php.ini
exit
sudo service nginx restart && sudo service php7.0-fpm restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment