17 lines
336 B
Plaintext
17 lines
336 B
Plaintext
<VirtualHost *:80>
|
|
ServerName sample.test
|
|
DocumentRoot /var/www/sample/public/
|
|
Options Indexes FollowSymLinks
|
|
|
|
<Directory "/var/www/sample/public/">
|
|
AllowOverride All
|
|
<IfVersion < 2.4>
|
|
Allow from all
|
|
</IfVersion>
|
|
<IfVersion >= 2.4>
|
|
Require all granted
|
|
</IfVersion>
|
|
</Directory>
|
|
|
|
</VirtualHost>
|