25 lines
543 B
Plaintext
25 lines
543 B
Plaintext
|
<VirtualHost *:85>
|
||
|
ServerName darien.nuestrared.org
|
||
|
ServerAdmin info@tupale.co
|
||
|
DocumentRoot /var/www/html
|
||
|
RewriteEngine On
|
||
|
RewriteCond %{HTTP_HOST} ^darien\.nuestrared.org [NC,OR]
|
||
|
RewriteRule ^/$ /e1 [R]
|
||
|
|
||
|
<Directory />
|
||
|
Options FollowSymLinks
|
||
|
AllowOverride All
|
||
|
</Directory>
|
||
|
<Directory /var/www/html/>
|
||
|
Options FollowSymLinks MultiViews
|
||
|
AllowOverride All
|
||
|
Require all granted
|
||
|
</Directory>
|
||
|
|
||
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
||
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
||
|
|
||
|
|
||
|
</VirtualHost>
|
||
|
|