Subject: How To Install the Apache Web Server on Ubuntu 16.04 LTS
Author: Linux
Posted on: 11/01/2017 08:45:31 PM
Step 1: Install Apache
$ sudo apt-get update
$ sudo apt-get install apache2
Where are Apache Web Server files stored?
html
/var/www/html <-- default
conf
/etc/apache2/
|-- apache2.conf
| `-- ports.conf
|-- mods-enabled
| |-- *.load
| `-- *.conf
|-- conf-enabled
| `-- *.conf
|-- sites-enabled
| `-- *.conf
log
/var/log/apache2/access.log
/var/log/apache2/error.log
Replies:
References: