2Fast2BCn
New member
- Joined
- May 27, 2016
- Messages
- 10
- Points
- 0
Apache HTTP Server is an open source server available for modern operating systems such as Unix and Windows, Apache allows you to use many features of your server but especially one of the most popular web programming languages is PHP. For more information, visit the official website at: httpd.apache.org
If you have bought a VPS, Cloud or a dedicated server and it is activated for using then you can install it on your web hosting (assuming it is not already installed).
How to proceed:
First open the terminal and run the command to install Apache web server:
To enable the services to run at boot time in case of a re-boot
you must now set up virtual hosting on port 80.
To do this you must open the httpd file located at /etc/httpd/conf/httpd.conf
At this point you need to uncomment the line "* 80". To find it you can search the text: "NameVirtualHost".
At this point it is necessary to save the file and restart our Apache.
The command to restart your web server:
Now you can test the operation of our web server by going to the browser and typing the address:
If everything is configured correctly you will see the page with the details of Apache.
If you have bought a VPS, Cloud or a dedicated server and it is activated for using then you can install it on your web hosting (assuming it is not already installed).
How to proceed:
First open the terminal and run the command to install Apache web server:
Code:
yum install httpd
Code:
chkconfig –levels 235 httpd on
To do this you must open the httpd file located at /etc/httpd/conf/httpd.conf
At this point you need to uncomment the line "* 80". To find it you can search the text: "NameVirtualHost".
At this point it is necessary to save the file and restart our Apache.
The command to restart your web server:
Code:
service httpd restart
Code:
http://Your_domain