docker-scripts/testrail/apache_testrail.conf

16 lines
421 B
Plaintext
Raw Normal View History

2020-05-19 22:36:10 +03:00
<VirtualHost *:80>
#ServerName www.example.com
ServerAdmin webmaster@localhost
2020-05-20 16:57:04 +03:00
DocumentRoot /var/www/testrail
2020-05-19 22:36:10 +03:00
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
2020-07-30 18:13:45 +03:00
<Directory /var/www/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
2020-05-19 22:36:10 +03:00
</VirtualHost>