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 & configure Apache HTTPD server in Linux?


Install & configure Apache HTTPD server in Ubuntu?


$ sudo apt update
$ sudo apt install apache2

# Setup webiste in default virtual host
$ rm /var/www/html/index.html
$ vi /var/www/html/index.html

<html>
<head>
  <title> Welcome to DevOpsSchool.com </title>
</head>
<body>
  <p> I'm running this website on an Ubuntu Server server!
</body>
</html>

# Restart Apache
$ service apache2 reload
$ service apache2 restart

# Validate 
$ watch curl http://localhostCode language: HTML, XML (xml)

Install & configure Apache HTTPD server in Centos/Redhat 7?


# Install Apache HTTPD
$ sudo yum -y update
$ sudo yum install httpd

# Start Apache HTTPD
$ systemctl start httpd
$ systemctl enable httpd
$ systemctl status httpd

# Setup website in default virtual host
$ vi /var/www/html/index.html

<html>
<head>
  <title> CentOs/Redhat rocks! </title>
</head>
<body>
  <p> I'm running this website on an Centos/Redhat Server server!
</body>
</html>

# By default, CentOS 7 built-in firewall is set to block Apache traffic. To allow web traffic on Apache, update the system firewall rules to permit inbound packets on HTTP and HTTPS using the commands below.
$ firewall-cmd --zone=public --permanent --add-service=http
$ firewall-cmd --zone=public --permanent --add-service=https
$ firewall-cmd --reload

# Test Apache HTTP Server on CentOS 7
$ watch curl http://SERVER_DOMAIN_NAME_OR_IP Code language: HTML, XML (xml)

Subscribe
Notify of
guest
0 Comments
Newest
Oldest Most Voted
Inline Feedbacks
View all comments

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.

0
Would love your thoughts, please comment.x
()
x