Created
March 2, 2018 23:01
-
-
Save m5lil/39592fee148e9f5dcce9fec2eac55405 to your computer and use it in GitHub Desktop.
A shell script for setting up Laravel Production environment on Ubuntu 16 system.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| export DEBIAN_FRONTEND=noninteractive | |
| # Check if user is root | |
| [ $(id -u) != "0" ] && { echo "${CFAILURE}Error: You must be root to run this script${CEND}"; exit 1; } | |
| # Configure | |
| MYSQL_ROOT_PASSWORD="123qweasdzxc" | |
| MYSQL_NORMAL_USER="m5lil" | |
| MYSQL_NORMAL_USER_PASSWORD="123qweasdzxc" | |
| # Check if password is defined | |
| if [[ "$MYSQL_ROOT_PASSWORD" == "" ]]; then | |
| echo "${CFAILURE}Error: MYSQL_ROOT_PASSWORD not define!!${CEND}"; | |
| exit 1; | |
| fi | |
| if [[ "$MYSQL_NORMAL_USER_PASSWORD" == "" ]]; then | |
| echo "${CFAILURE}Error: MYSQL_NORMAL_USER_PASSWORD not define!!${CEND}"; | |
| exit 1; | |
| fi | |
| # Force Locale | |
| export LC_ALL="en_US.UTF-8" | |
| echo "LC_ALL=en_US.UTF-8" >> /etc/default/locale | |
| locale-gen en_US.UTF-8 | |
| # Add www user and group | |
| addgroup www | |
| useradd -g www -d /home/www -c "www data" -m -s /usr/sbin/nologin www | |
| # Update Package List | |
| apt-get update | |
| # Update System Packages | |
| apt-get -y upgrade | |
| # remove apache2 | |
| apt-get purge apache2 -y | |
| # Install Some PPAs | |
| apt-get install -y software-properties-common curl | |
| apt-add-repository ppa:nginx/development -y | |
| apt-add-repository ppa:chris-lea/redis-server -y | |
| apt-add-repository ppa:ondrej/php -y | |
| # Using the default Ubuntu 16 MySQL 7 Build | |
| # gpg: key 5072E1F5: public key "MySQL Release Engineering <[email protected]>" imported | |
| # apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys 5072E1F5 | |
| # sh -c 'echo "deb http://repo.mysql.com/apt/ubuntu/ xenial mysql-5.7" >> /etc/apt/sources.list.d/mysql.list' | |
| curl --silent --location https://deb.nodesource.com/setup_8.x | bash - | |
| # Update Package Lists | |
| apt-get update | |
| # Install Some Basic Packages | |
| apt-get install -y build-essential dos2unix gcc git libmcrypt4 libpcre3-dev \ | |
| make python2.7-dev python-pip re2c supervisor unattended-upgrades whois vim libnotify-bin | |
| # Set My Timezone | |
| ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime | |
| # Install PHP Stuffs | |
| apt-get install -y --force-yes php7.1-cli php7.1 \ | |
| php-pgsql php-sqlite3 php-gd php-apcu \ | |
| php-curl php7.1-mcrypt \ | |
| php-imap php-mysql php-memcached php7.1-readline php-xdebug \ | |
| php-mbstring php-xml php7.1-zip php7.1-intl php7.1-bcmath php-soap | |
| # Install Composer | |
| curl -sS https://getcomposer.org/installer | php | |
| mv composer.phar /usr/local/bin/composer | |
| # Add Composer Global Bin To Path | |
| printf "\nPATH=\"$(composer config -g home 2>/dev/null)/vendor/bin:\$PATH\"\n" | tee -a ~/.profile | |
| # Set Some PHP CLI Settings | |
| sudo sed -i "s/error_reporting = .*/error_reporting = E_ALL/" /etc/php/7.1/cli/php.ini | |
| sudo sed -i "s/display_errors = .*/display_errors = On/" /etc/php/7.1/cli/php.ini | |
| sudo sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.1/cli/php.ini | |
| sudo sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.1/cli/php.ini | |
| # Install Nginx & PHP-FPM | |
| apt-get install -y --force-yes nginx php7.1-fpm | |
| # Setup Some PHP-FPM Options | |
| sed -i "s/error_reporting = .*/error_reporting = E_ALL \& ~E_NOTICE \& ~E_STRICT \& ~E_DEPRECATED/" /etc/php/7.1/fpm/php.ini | |
| sed -i "s/display_errors = .*/display_errors = Off/" /etc/php/7.1/fpm/php.ini | |
| sed -i "s/;cgi.fix_pathinfo=1/cgi.fix_pathinfo=0/" /etc/php/7.1/fpm/php.ini | |
| sed -i "s/memory_limit = .*/memory_limit = 512M/" /etc/php/7.1/fpm/php.ini | |
| sed -i "s/upload_max_filesize = .*/upload_max_filesize = 50M/" /etc/php/7.1/fpm/php.ini | |
| sed -i "s/post_max_size = .*/post_max_size = 50M/" /etc/php/7.1/fpm/php.ini | |
| sed -i "s/;date.timezone.*/date.timezone = UTC/" /etc/php/7.1/fpm/php.ini | |
| sed -i "s/listen =.*/listen = 127.0.0.1:9000/" /etc/php/7.1/fpm/pool.d/www.conf | |
| # Setup Some fastcgi_params Options | |
| cat > /etc/nginx/fastcgi_params << EOF | |
| fastcgi_param QUERY_STRING \$query_string; | |
| fastcgi_param REQUEST_METHOD \$request_method; | |
| fastcgi_param CONTENT_TYPE \$content_type; | |
| fastcgi_param CONTENT_LENGTH \$content_length; | |
| fastcgi_param SCRIPT_FILENAME \$request_filename; | |
| fastcgi_param SCRIPT_NAME \$fastcgi_script_name; | |
| fastcgi_param REQUEST_URI \$request_uri; | |
| fastcgi_param DOCUMENT_URI \$document_uri; | |
| fastcgi_param DOCUMENT_ROOT \$document_root; | |
| fastcgi_param SERVER_PROTOCOL \$server_protocol; | |
| fastcgi_param GATEWAY_INTERFACE CGI/1.1; | |
| fastcgi_param SERVER_SOFTWARE nginx/\$nginx_version; | |
| fastcgi_param REMOTE_ADDR \$remote_addr; | |
| fastcgi_param REMOTE_PORT \$remote_port; | |
| fastcgi_param SERVER_ADDR \$server_addr; | |
| fastcgi_param SERVER_PORT \$server_port; | |
| fastcgi_param SERVER_NAME \$server_name; | |
| fastcgi_param HTTPS \$https if_not_empty; | |
| fastcgi_param REDIRECT_STATUS 200; | |
| EOF | |
| # Set The Nginx & PHP-FPM User | |
| sed -i "s/user www-data;/user www;/" /etc/nginx/nginx.conf | |
| sed -i "s/# server_names_hash_bucket_size.*/server_names_hash_bucket_size 64;/" /etc/nginx/nginx.conf | |
| sed -i "s/user = www-data/user = www/" /etc/php/7.1/fpm/pool.d/www.conf | |
| sed -i "s/group = www-data/group = www/" /etc/php/7.1/fpm/pool.d/www.conf | |
| sed -i "s/listen\.owner.*/listen.owner = www/" /etc/php/7.1/fpm/pool.d/www.conf | |
| sed -i "s/listen\.group.*/listen.group = www/" /etc/php/7.1/fpm/pool.d/www.conf | |
| sed -i "s/;listen\.mode.*/listen.mode = 0666/" /etc/php/7.1/fpm/pool.d/www.conf | |
| service nginx restart | |
| service php7.1-fpm restart | |
| # Install Node | |
| apt-get install -y nodejs | |
| /usr/bin/npm install -g gulp | |
| /usr/bin/npm install -g bower | |
| # Install SQLite | |
| apt-get install -y sqlite3 libsqlite3-dev | |
| # Install MySQL | |
| debconf-set-selections <<< "mysql-community-server mysql-community-server/root-pass password ${MYSQL_ROOT_PASSWORD}" | |
| debconf-set-selections <<< "mysql-community-server mysql-community-server/re-root-pass password ${MYSQL_ROOT_PASSWORD}" | |
| apt-get install -y mysql-server | |
| # Configure MySQL Password Lifetime | |
| echo "default_password_lifetime = 0" >> /etc/mysql/mysql.conf.d/mysqld.cnf | |
| mysql --user="root" --password="${MYSQL_ROOT_PASSWORD}" -e "CREATE USER '${MYSQL_NORMAL_USER}'@'0.0.0.0' IDENTIFIED BY '${MYSQL_NORMAL_USER_PASSWORD}';" | |
| mysql --user="root" --password="${MYSQL_ROOT_PASSWORD}" -e "GRANT ALL ON *.* TO '${MYSQL_NORMAL_USER}'@'127.0.0.1' IDENTIFIED BY '${MYSQL_NORMAL_USER_PASSWORD}' WITH GRANT OPTION;" | |
| mysql --user="root" --password="${MYSQL_ROOT_PASSWORD}" -e "GRANT ALL ON *.* TO '${MYSQL_NORMAL_USER}'@'localhost' IDENTIFIED BY '${MYSQL_NORMAL_USER_PASSWORD}' WITH GRANT OPTION;" | |
| mysql --user="root" --password="${MYSQL_ROOT_PASSWORD}" -e "FLUSH PRIVILEGES;" | |
| service mysql restart | |
| # Add Timezone Support To MySQL | |
| mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql --user=root --password=${MYSQL_ROOT_PASSWORD} mysql | |
| # Install A Few Other Things | |
| apt-get install -y redis-server memcached beanstalkd | |
| # Configure Supervisor | |
| systemctl enable supervisor.service | |
| service supervisor start | |
| # Configure Beanstalkd | |
| sed -i "s/#START=yes/START=yes/" /etc/default/beanstalkd | |
| /etc/init.d/beanstalkd start | |
| # Enable Swap Memory | |
| /bin/dd if=/dev/zero of=/var/swap.1 bs=1M count=1024 | |
| /sbin/mkswap /var/swap.1 | |
| /sbin/swapon /var/swap.1 | |
| clear | |
| echo "--" | |
| echo "--" | |
| echo "It's Done." | |
| echo "Mysql Root Password: ${MYSQL_ROOT_PASSWORD}" | |
| echo "Mysql Normal User: ${MYSQL_NORMAL_USER}" | |
| echo "Mysql Normal User Password: ${MYSQL_NORMAL_USER_PASSWORD}" | |
| echo "--" | |
| echo "--" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment