/[drupal]/contributions/modules/provision/web_server/provision_apache_vhost_redirect.tpl.php
ViewVC logotype

Contents of /contributions/modules/provision/web_server/provision_apache_vhost_redirect.tpl.php

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.7 - (show annotations) (download) (as text)
Sat Sep 19 09:11:51 2009 UTC (2 months, 1 week ago) by mig5
Branch: MAIN
CVS Tags: DRUPAL-6--0-4-ALPHA3, DRUPAL-6--0-4-ALPHA2, HEAD
Changes since 1.6: +2 -2 lines
File MIME type: text/x-php
print the ServerName variable properly in the redirect template
1 <VirtualHost *:<?php print $site_port; ?>>
2 <?php if ($site_mail) : ?>
3 ServerAdmin <?php print $site_mail; ?>
4 <?php endif;?>
5
6 ServerName <?php print $site_url; ?>
7
8 <?php if (is_array($aliases)) :
9 foreach ($aliases as $alias) : ?>
10 ServerAlias <?php print $alias; ?>
11 <?php
12 endforeach;
13 endif; ?>
14
15 RedirectMatch permanent ^(.*) http://<?php print $site_url ?>$1
16 </VirtualHost>

  ViewVC Help
Powered by ViewVC 1.1.2