Turn Your Vehicle Into a Smart Earning Asset

While you’re not driving your car or bike, it can still be working for you. MOTOSHARE helps you earn passive income by connecting your vehicle with trusted renters in your city.

🚗 You set the rental price
🔐 Secure bookings with verified renters
📍 Track your vehicle with GPS integration
💰 Start earning within 48 hours

Join as a Partner Today

It’s simple, safe, and rewarding. Your vehicle. Your rules. Your earnings.

How to install and configure nginx in CentOS 7 / RHEL 7?

Step 1 – Configure Nginx repo for CentOS 7

$ vi /etc/yum.repos.d/nginx.repo

Append following for CentOS 7.x:

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/mainline/centos/7/$basearch/
gpgcheck=0
enabled=1Code language: JavaScript (javascript)

Step 2 – Configure Nginx repo for RHEL 7

A note about configuring Nginx repo for RHEL 7

Create or edit file using vi text editor:
$ vi /etc/yum.repos.d/nginx.repo

Append following for RHEL (Red Hat Enterprise Linux) version 7.x:

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/mainline/rhel/7/$basearch/
gpgcheck=0
enabled=1
Code language: JavaScript (javascript)

Step 3 – Install Nginx on CentOS 7 & RHEL 7

To install latest stable nginx server, run the following yum command:
$ sudo yum update
$ sudo yum install nginx


Step 4 – Start/stop/restart nginx server


$ sudo systemctl enable nginx
$ sudo systemctl start nginx
$ sudo systemctl stop nginx
$ sudo systemctl restart nginx
$ sudo systemctl status nginx

Step 5 – Open port 80 and 443 using firewall-cmd

You must open and enable port 80 and 443 using the firewall-cmd command:
$ sudo firewall-cmd --permanent --zone=public --add-service=http
$ sudo firewall-cmd --permanent --zone=public --add-service=https
$ sudo firewall-cmd --reloadCode language: PHP (php)

Step 6 – Test it

Verify that port 80 or 443 opened using ss command:
$ sudo ss -tulpn

You can also use the curl command to get same info using the cli:
$ curl -I http://10.21.136.13
$ curl http://10.21.136.13Code language: JavaScript (javascript)

Step 7 – Configure Nginx server

- Config dir – /etc/nginx/
- Master/Global config file – /etc/nginx/nginx.conf
- Port 80 http config file – /etc/nginx/conf.d/default
- TCP ports opened by Nginx – 80 (HTTP), 443 (HTTPS)
- Document root directory – /usr/share/nginx/html

To edit files use a text editor such as vi
$ sudo vi /etc/nginx/conf.d/default

You can upload or copy your html/css/js and images to /usr/share/nginx/html/
$ cd /usr/share/nginx/html/
$ sudo cp /backups/theos.in/*.html .
$ sudo cp /backups/theos.in/*.css .Code language: JavaScript (javascript)

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.