20 lines
716 B
Plaintext
Executable File
20 lines
716 B
Plaintext
Executable File
# virtual host generated by the gulpify script of tykayn
|
||
# http://artlemoine.com
|
||
<VirtualHost *:80>
|
||
# for example
|
||
# ServerName testinglive.dev
|
||
ServerName myservername.dev
|
||
ServerAdmin webmaster@localhost
|
||
# /var/www/html/testinglive/web
|
||
DocumentRoot /var/www/html/testinglive/web
|
||
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
<Directory "/var/www/html/testinglive/web">
|
||
Options Indexes FollowSymLinks Includes ExecCGI
|
||
AllowOverride All
|
||
# this command has changed since apache 2.4
|
||
Require all granted
|
||
</Directory>
|
||
</VirtualHost>
|
||
|