12 lines
293 B
ApacheConf
12 lines
293 B
ApacheConf
ServerName localhost
|
|
<VirtualHost *:80>
|
|
ServerAdmin admin@localhost
|
|
DocumentRoot /var/www/html/
|
|
<Directory /var/www/html/>
|
|
DirectoryIndex index.php
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|