24 lines
458 B
Plaintext
24 lines
458 B
Plaintext
<VirtualHost *:80>
|
|
#
|
|
# Following lines need to be updated to your needs
|
|
#
|
|
|
|
#ServerName www.example.com
|
|
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /var/www/html/public
|
|
DirectoryIndex /index.php
|
|
|
|
<Directory /var/www/html/public>
|
|
AllowOverride None
|
|
Order Allow,Deny
|
|
Allow from All
|
|
|
|
FallbackResource /index.php
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
|
|
</VirtualHost>
|