11 lines
267 B
Text
11 lines
267 B
Text
|
<VirtualHost *:80>
|
||
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
|
ServerName sohsot.local
|
||
|
DocumentRoot /var/www/public/
|
||
|
<Directory "/var/www/public/">
|
||
|
Require all granted
|
||
|
AllowOverride All
|
||
|
Options -Indexes
|
||
|
</Directory>
|
||
|
</VirtualHost>
|