Skip to content

Commit

Permalink
Update 02 - Apache Server.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Admin9705 authored Oct 22, 2017
1 parent 479f36f commit aeea811
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions 4 - Build Website - Front/02 - Apache Server.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,23 @@ sudo apt-get install php libapache2-mod-php php-mcrypt php-mysql
sudo nano /etc/apache2/mods-enabled/dir.conf
```

You will see:
You will see

```sh
<IfModule mod_dir.c>
DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>
```

Make sure it looks like this now:
Make sure it looks like this now

```sh
<IfModule mod_dir.c>
DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm
</IfModule>
```

- Reload the server to ensure that it works
Reload the server to ensure that it works

```sh
# reload the apache server
Expand Down

0 comments on commit aeea811

Please sign in to comment.