Difference between revisions of "Name VirtualHost"
From Supercomputación y Cálculo Científico UIS
(Created page with "The following example shows how to setup a name virtualhost in apache for dispatching several sites from the same server {{File|/etc/apache2/...|<pre><nowiki> <VirtualHost *:...") |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | The following example shows how to setup a name virtualhost in apache for dispatching several sites from the same server | + | __NOTOC__ |
+ | |||
+ | <div class="thumbnail img-thumbnail">http://wiki.sc3.uis.edu.co/images/a/a8/Logo_sc33.png</div> | ||
+ | <p><div class="btn btn-primary"><i class="fa fa-long-arrow-left"></i> [[Apache]]</div></p> | ||
+ | |||
+ | <div class="col-md-14"> | ||
+ | <div class="panel panel-darker-white-border"> | ||
+ | <div class="panel-heading"> | ||
+ | <h3 class="panel-title">Name VirtualHost</h3> | ||
+ | </div> | ||
+ | <div class="panel-body"> | ||
+ | <p> | ||
+ | |||
+ | The following example shows how to setup a name virtualhost in apache for dispatching several sites from the same server. | ||
+ | The setup shown below serves a website for the address soportesc3.uis.edu.co and its subdomains from the local directory /var/www/support | ||
{{File|/etc/apache2/...|<pre><nowiki> | {{File|/etc/apache2/...|<pre><nowiki> | ||
Line 9: | Line 23: | ||
</VirtualHost> | </VirtualHost> | ||
</nowiki></pre>}} | </nowiki></pre>}} | ||
+ | |||
+ | </p> | ||
+ | </div> | ||
+ | </div> | ||
+ | </div> |
Latest revision as of 01:56, 27 September 2016
Name VirtualHost
The following example shows how to setup a name virtualhost in apache for dispatching several sites from the same server. The setup shown below serves a website for the address soportesc3.uis.edu.co and its subdomains from the local directory /var/www/support
File: /etc/apache2/...
<VirtualHost *:80> ServerName soportesc3.uis.edu.co ServerAlias *.soportesc3.uis.edu.co DocumentRoot /var/www/support DirectoryIndex index.html index.php index.htm </VirtualHost>