sh 用于Ubuntu 14.0.4的LEMP堆栈安装Bash脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 用于Ubuntu 14.0.4的LEMP堆栈安装Bash脚本相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env bash
sudo add-apt-repository ppa:ondrej/php
sudo apt-get -y update
sudo apt-get -y upgrade
sudo apt-get install -y python-software-properties
sudo apt-get install -y nginx
sudo apt-get install -y php7.0-fpm
sudo sed -i s/\;cgi\.fix_pathinfo\s*\=\s*1/cgi.fix_pathinfo\=0/ /etc/php/7.0/fpm/php.ini
sudo apt-get install -y php7.0-mysql
sudo apt-get install -y php7.0-mbstring
sudo apt-get install -y php7.0-xml
sudo apt-get install -y php7.0-zip
sudo apt-get install -y php7.0-curl
sudo apt-get install -y git
sudo apt-get install -y nodejs
sudo ln -s /usr/bin/nodejs /usr/bin/node
sudo apt-get install -y build-essential
sudo apt-get install -y npm
sudo npm install -g bower
php -r "readfile('https://getcomposer.org/installer');" > composer-setup.php
php -r "if (hash('SHA384', file_get_contents('composer-setup.php')) === 'fd26ce67e3b237fffd5e5544b45b0d92c41a4afe3e3f778e942e43ce6be197b9cdc7c251dcde6e2a52297ea269370680') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); }"
php composer-setup.php
php -r "unlink('composer-setup.php');"
sudo mv composer.phar /usr/local/bin/composer
以上是关于sh 用于Ubuntu 14.0.4的LEMP堆栈安装Bash脚本的主要内容,如果未能解决你的问题,请参考以下文章
docker-compose:无法从我的 LEMP 堆栈访问 phpMyAdmin
ini Nginx OctoberCMS Config Digitalocean LEMP堆栈
sh lemp-wordpress-16-04.sh
sh Scaleway Letsencrypt LEMP
如何在Ubuntu16.04 中安装Linux, Nginx, MySQL, PHP (LEMP 栈)
在 Ubuntu 16.04 上安装 LEMP 环境之图文向导