Skip to content

Instantly share code, notes, and snippets.

@lourenzo
Forked from sumardi/nginx.default.conf
Last active May 4, 2017 23:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lourenzo/c284ebb02ae9a509ebd65ea4147ac3fc to your computer and use it in GitHub Desktop.
Save lourenzo/c284ebb02ae9a509ebd65ea4147ac3fc to your computer and use it in GitHub Desktop.
Install PHP-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI
# Install linux update, followed by GCC and Make
sudo yum -y update
sudo yum install -y gcc make
# Install Nginx and PHP-FPM
sudo yum install -y nginx php-fpm
# Install PHP extensions
sudo yum install -y php-devel php-mysql php-pdo \
php-pear php-mbstring php-cli php-odbc \
php-imap php-gd php-xml php-soap
# Install PHP-APC
sudo yum install -y php-pecl-apc
sudo yum install -y pcre-devel
# Install MySQL
sudo yum -y install mysql56-server
# Nginx Configuration
sudo vi /etc/nginx/conf.d/default.conf
# PHP-FPM Configuration
sudo vi /etc/php-fpm.d/www.conf
# Autostart Nginx, PHP-FPM and MySQL
sudo chkconfig nginx on
sudo chkconfig mysqld on
sudo chkconfig php-fpm on
location / {
root /var/www/html;
index index.php index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/share/nginx/
html$fastcgi_script_name;
include fastcgi_params;
}
[...]
;listen = 127.0.0.1:9000
listen = /var/run/php-fpm/php-fpm.sock
;listen.owner = nobody
listen.owner = nginx
;listen.group = nobody
listen.group = nginx
;listen.mode = 0666
listen.mode = 0664
user = nginx
group = nginx
[...]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment