14 lines
336 B
Plaintext
14 lines
336 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
DocumentRoot /root/trackdirect/htdocs/public
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|
|
|
|
<Directory "/root/trackdirect/htdocs/public">
|
|
Options Indexes MultiViews
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|