Install Apache in Ubuntu
Installation instructions: sudo apt-get install apache2
After the installation is complete:
The resulting start and stop files are:/etc/init.d/apache2
Start: sudo apache2ctl-k start
Stop: sudo apache2ctl-k stop
Reboot: sudo apache2ctl-k restart
Configuration file Guaranteed:/etc/apache2
It is necessary to note that the generic Apache Release configuration file is:
httpd.conf
The main configuration file for the Ubuntu release is:
Apache2.conf
The following files are referenced in apache2.conf:
# contains configuration of dynamic modules:
Include/etc/apache2/mods-enabled/*.load
Include/etc/apache2/mods-enabled/*.conf
# contains the user's own configuration:
Include/etc/apache2/httpd.conf
# contains the configuration of the Port listener:
Include/etc/apache2/ports.conf
# contains a generic configuration statement fragment:
include/etc/apache2/conf.d/
# contains configuration directives for the virtual host:
include/etc/apache2/sites-enabled/
Modify Httpd.conf
Add the following:
ServerName 127.0.0.1:80
For further configuration and use, you can access the Apache manual.