Skip to content

Instantly share code, notes, and snippets.

@OndrejValenta
Last active July 30, 2019 16:18
Show Gist options
  • Save OndrejValenta/1795adc7683626f811ae87c8d2cc2a3a to your computer and use it in GitHub Desktop.
Save OndrejValenta/1795adc7683626f811ae87c8d2cc2a3a to your computer and use it in GitHub Desktop.

Install Nginx and PHP on CentOS 7

Based on this article

Install Nginx

sudo yum install epel-release -y
sudo yum install nginx -y

sudo systemctl start nginx
sudo systemctl enable nginx

echo Nginx installed!

Install PHP with MySQL support

sudo yum install php php-mysql php-fpm
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment