14 lines
408 B
ApacheConf
14 lines
408 B
ApacheConf
<VirtualHost *:80>
|
|
ServerName shubraveil.local
|
|
DocumentRoot /home/momaher/Public/Websites/shubraveil
|
|
|
|
<Directory /home/momaher/Public/Websites/shubraveil>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/shubraveil_error.log
|
|
CustomLog ${APACHE_LOG_DIR}/shubraveil_access.log combined
|
|
</VirtualHost>
|