Centos 7 Install Nginx Php 7
Nginx Server Overview and Prerequisites
Nginx is a highly popular open source web server and reverse proxy software, known for its scalability and performance in the face of increased web traffic. It is used for the hosting of websites, web applications, and other services. The Nginx server is easy to install, configure and make ready for use to serve websites and web services.
Before you start setting up Nginx on your Centos 7 server, you need to ensure that you have the necessary prerequisites such as an up-to-date Centos 7 server with a valid domain name and a static IP address. You should also make sure that your server is properly configured with a suitable firewall. Finally, you’ll need to set up some additional packages such as PHP, MySQL and more.
Installing and Configuring Nginx
Once the prerequisites are taken care of, you’re now ready to proceed with the installation and configuration of Nginx. To install Nginx on our Centos 7 system, we’ll be using the yum package manager. Start off by adding the Nginx software repository that contains all the packages needed for the installation.
Run the following command to add the Nginx repository:
sudo yum -y install epel-release yum-utils
Then, you can use the yum-config-manager to add the Nginx repository with the following command:
sudo yum-config-manager –add-repo https://nginx.org/packages/centos/7/x86_64/
Next, to install Nginx, run the following command:
sudo yum -y install nginx
Once you’ve installed Nginx, you’re now ready to proceed with its configuration. To do this, you’ll need to edit the Nginx configuration file, which is located at /etc/nginx/nginx.conf. This can be done by running the following command:
sudo vi /etc/nginx/nginx.conf
Edit the server section to look like the following:
server {
listen 80 default_server;
server_name your_domain_name_or_IP;
root /var/www/html;
index index.html index.htm;
}
Save and exit the file. Now, start and enable Nginx with the following commands:
sudo systemctl start nginx
sudo systemctl enable nginx
Configuring the Firewall
To make sure that Nginx is accessible from outside our local network, we need to configure the firewall to allow incoming requests on port 80. To do this, run the following command:
sudo firewall-cmd –permanent — add-service=http
Once this is done, you’ll need to reload the firewall for the changes to take effect. To do this, run the following command:
sudo firewall-cmd –reload
You can then go ahead and test if Nginx is working by running the following command:
sudo systemctl status nginx
Installing and Configuring PHP 7
Now, the next step is to install and configure PHP. To install PHP 7, we’ll need to add some additional repositories to our system. Run the following command to add the EPEL repository:
sudo yum -y install epel-release
Then, run the following command to add the Webtatic repository:
sudo rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
Now, install PHP 7 with all its necessary modules by running the following command:
sudo yum -y install php70w php70w-common php70w-opcache php70w-fpm php70w-gd php70w-mysql php70w-mcrypt
Once the installation is completed, start and enable PHP-FPM by running the following commands:
sudo systemctl start php-fpm
sudo systemctl enable php-fpm
Configuring Nginx and PHP-FPM
With Nginx and PHP-FPM now installed and running, the next step is to configure them to work together. This can be done by running the following command:
sudo vi /etc/nginx/nginx.conf
Add the following lines at the bottom of the file:
location / {
try_files $uri $uri/ /index.php?$args;
}
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
Save and exit the file. Now, restart Nginx for the changes to take effect by running the following command:
sudo systemctl restart nginx
Testing Nginx and PHP-FPM
To test whether Nginx and PHP-FPM are working correctly together, create a test PHP file with the following contents:
sudo vi /var/www/html/info.php
phpinfo();
?>
Save and close the file. Then, open your web browser and navigate to http://your_domain_or_IP/info.php. You should see the PHP info page, which confirms that Nginx and PHP-FPM are working correctly together.
FAQs
Q) How to install Nginx on Centos 7?
A) To install Nginx on your Centos 7 server, you need to add the Nginx software repository that contains all the packages needed for the installation. Then, you can use the yum package manager to install Nginx with the following command:
sudo yum -y install nginx
Q) How to configure a firewall to allow Nginx requests?
A) To make sure that Nginx is accessible from outside our local network, we need to configure the firewall to allow incoming requests on port 80. To do this, run the following command:
sudo firewall-cmd –permanent — add-service=http
Q) How to install PHP 7 on Centos 7?
A) To install PHP 7 on your Centos 7 system, you’ll need to add some additional repositories to your system. Then, use the yum package manager to install PHP 7 with all its necessary modules by running the following command:
sudo yum -y install php70w php70w-common php70w-opcache php70w-fpm php70w-gd php70w-mysql php70w-mcrypt
Conclusion
In this article, we’ve gone through the process of installing and configuring Nginx and PHP 7 on a Centos 7 server. We’ve also covered how to configure the firewall to allow incoming requests on port 80. We hope you’ve found this article helpful.
Thank you for reading this article. Please read other articles on this website as well.
Related Posts:
- Install And Configure Nginx Mysql Install and Configure Nginx Mysql What is Nginx Nginx is an open source, high-performance HTTP server, reverse proxy, and IMAP/POP3 proxy server. It provides load balancing, content caching, access control,…
- Nginx Proxy To Port 8080 Nginx Proxy To Port 8080 What is Nginx? Nginx is an open-source, high-performance web server developed in 2002 by Igor Sysoev and released publicly in 2004. It is a very…
- Certbot Centos 7 Nginx Certificate Invalid Certbot Centos 7 Nginx Certificate Invalid What is Certbot & Centos 7 Nginx Certificate? Certbot is an open-source software project from the Electronic Frontier Foundation (EFF). It enables website owners…
- How To Debian Nginx Php How To Debian Nginx Php Step 1 – Setup Your VPS The first step to setting up your web server is getting your VPS (Virtual Private Server). This is usually…
- Php-Fpm Cache Nginx Centos Php-Fpm Cache Nginx Centos Introduction to Nginx, Php-Fpm, and Centos Nginx, PHP-FPM, and Centos are three powerful, open-source technologies that are used to create powerful applications, websites, and services. Nginx…
- How To Install Lets Encrypt On Centos 7 Nginx How To Install Lets Encrypt On Centos 7 Nginx Purpose of Lets Encrypt Lets Encrypt is a free and open-source encryption certificate authority that provides digital certificates to website owners…
- Config Ssl On Nginx Centos 7 Config SSL On Nginx Centos 7 Overview Secure Sockets Layer (SSL) is a type of cryptographic protocol used for secure communications on the Internet, as well as for secure access…
- Instal Nginx Centos Di Webuzo Instal Nginx Centos Di Webuzo Background Webuzo is a leading web server platform used by individuals and businesses alike. It supports a range of operating systems, including the popular CentOS…
- Install Nginx On Windows 10 Install Nginx On Windows 10 Introduction to Nginx If you’ve been searching for a reliable, efficient, and secure web server software for your Windows 10 computer, then look no further…
- Check Nginx Version Centos 7 Check Nginx Version Centos 7 1. What is Nginx? Nginx is an open source web server software created by Igor Sysoev in 2002 and is widely used for powering the…
- Config Mysql Nginx In Centos Config Mysql Nginx In Centos Introduction: CentOS is a versatile Linux server operating system. It is the most widely used operating system for web servers, providing enterprises and small business…
- Install Nginx Di Whm Domainesia Install Nginx Di Whm Domainesia Install Nginx Di Whm Domainesia Introduction to Nginx Nginx (engine x) is a popular open-source, high-performance web server written in C. Its main goal is…
- Selinux Enable Php Fpm Nginx Centos 7 Selinux Enable Php Fpm Nginx Centos 7 What is Selinux Enable Php Fpm Nginx Centos 7? Selinux Enable Php Fpm Nginx CENTOS 7 is an easy-to-use web server and operating…
- How To Install Wordpress On Nginx How To Install Wordpress On Nginx Introduction If you’re looking to start your own website or blog, probably the easiest and most popular platform to choose is WordPress. WordPress is…
- Setting Up Passenger And Nginx Ubuntu 18.04 Setting Up Passenger And Nginx Ubuntu 18.04 Installing the Passenger Gem Passenger is an open source framework created by Phusion which allows easy integration of Nginx with Ruby applications such…
- Php-Fpm Conf Nginx Debian Php-Fpm Conf Nginx Debian Overview of PHP-FPM PHP-FPM (FastCGI Process Manager) is an extension designed to increase the speed and performance of websites that are frequently visited by users. It…
- Install Nginx Windows Server 2012 Install Nginx Windows Server 2012 Introduction to Nginx for Windows Server 2012 Nginx is an open source web server and a reverse proxy server that was created to address the…
- Openldap Slapd Php Nginx Ldap Centos Openldap Slapd Php Nginx Ldap Centos What is OpenLDAP OpenLDAP is an open-source implementation of the Lightweight Directory Access Protocol (LDAP) and is offered by the OpenLDAP project. OpenLDAP is…
- Install Nginx And Php Scract In Docker Install Nginx And PHP Script in Docker What is Docker? Docker is a popular platform for creating, running, and managing applications in a lightweight container system. Originally released as an…
- Nginx And Apache Together Centos Nginx and Apache Together in Centos Overview A popular choice for websites is using the powerful combination of Nginx and Apache together. The two web servers are both reliable and…
- How To Setup Ssl On Nginx Centos How To Setup SSL On Nginx CentOS Getting Started with OpenSSL SSL stands for Secure Socket Layer and is used to secure communication between a client and a server. An…
- What Is Benefit Of Nginx What is the Benefit of Nginx? Overview of Nginx Nginx is a free, open source, high-performance HTTP server, reverse proxy, IMAP/POP3 proxy server, and load balancer. It runs on Linux,…
- Cannot Start Nginx On Centos 7 Failed To Exec Airflow Cannot Start Nginx On Centos 7 Failed To Exec Airflow What Is Nginx in Centos 7? Nginx is an open source web server that powers some of the largest and…
- Error 502 Nginx On Server Centos Error 502 Nginx On Server Centos What is Error 502 Nginx On Server Centos? Error 502 Nginx On Server Centos is a type of HTTP status code error that occurs…
- How To Configure Websocket Nginx Fpm How To Configure Websocket Nginx Fpm Introduction Websocket is a modern web technology that provides bidirectional communication between a web server and a web client. The websocket protocol allows for…
- Googlec Cloud Hosting Nginx Caching Proxy Google Cloud Hosting Nginx Caching Proxy What is Nginx? Nginx is an open source web server typically used to serve high-traffic websites. It offers a powerful set of features and…
- Install Wordpress On Ubuntu 18.04 Nginx Install WordPress On Ubuntu 18.04 Nginx Introduction To Ubuntu And Nginx Ubuntu is a popular open-source operating system which has gained immense popularity over the years. It is easy to…
- Laravel 5.5 Configure Nginx Laravel 5.5 Configure Nginx Introduction To Nginx Nginx is a web server software often deployed as a reverse proxy. It is open-source and available to download for free. Nginx has…
- Tutorial Start Nginx Ubuntu Webserver Tutorial Start Nginx Ubuntu Webserver Step 1: Prerequisites Before we start configuring Nginx as a web server on Ubuntu, we need to make sure we have the following prerequisites: A…
- How To Install Flask Nginx On Ubuntu 1604 How To Install Flask Nginx On Ubuntu 1604 Introduction Flask is a web application framework based on Python. It is highly useful for web developers due to its flexibility and…