16 lines
345 B
Plaintext
16 lines
345 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin works@chiefsoft.com
|
|
ServerName oameye.works.wrenchboard.com
|
|
DocumentRoot /var/www/html/public
|
|
|
|
<Directory /var/www/html>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
</Directory>
|
|
|
|
# pass system env CI_ENVIRONMENT to Apache
|
|
PassEnv CI_ENVIRONMENT
|
|
|
|
</VirtualHost>
|