Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: third_party/apache-win32/conf/extra/httpd-vhosts.conf

Issue 147313008: Check Win32 Apache+PHP into third_party (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/apache-win32/conf/extra/httpd-userdir.conf ('k') | third_party/apache-win32/conf/httpd.conf » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/apache-win32/conf/extra/httpd-vhosts.conf
diff --git a/third_party/apache-win32/conf/extra/httpd-vhosts.conf b/third_party/apache-win32/conf/extra/httpd-vhosts.conf
new file mode 100644
index 0000000000000000000000000000000000000000..907be5a5216149e254d2cb52edb436c4924703c1
--- /dev/null
+++ b/third_party/apache-win32/conf/extra/httpd-vhosts.conf
@@ -0,0 +1,45 @@
+#
+# Virtual Hosts
+#
+# If you want to maintain multiple domains/hostnames on your
+# machine you can setup VirtualHost containers for them. Most configurations
+# use only name-based virtual hosts so the server doesn't need to worry about
+# IP addresses. This is indicated by the asterisks in the directives below.
+#
+# Please see the documentation at
+# <URL:http://httpd.apache.org/docs/2.2/vhosts/>
+# for further details before you try to setup virtual hosts.
+#
+# You may use the command line option '-S' to verify your virtual host
+# configuration.
+
+#
+# Use name-based virtual hosting.
+#
+NameVirtualHost *:80
+
+#
+# VirtualHost example:
+# Almost any Apache directive may go into a VirtualHost container.
+# The first VirtualHost section is used for all requests that do not
+# match a ServerName or ServerAlias in any <VirtualHost> block.
+#
+<VirtualHost *:80>
+ ServerAdmin webmaster@dummy-host.
+ DocumentRoot "D:/src/httpd/docs/dummy-host."
+ ServerName dummy-host.
+ ServerAlias www.dummy-host.
+ ErrorLog "logs/dummy-host.-error.log"
+ CustomLog "logs/dummy-host.-access.log" common
+</VirtualHost>
+
+<VirtualHost *:80>
+ ServerAdmin webmaster@dummy-host2.
+ DocumentRoot "D:/src/httpd/docs/dummy-host2."
+ ServerName dummy-host2.
+ ErrorLog "logs/dummy-host2.-error.log"
+ CustomLog "logs/dummy-host2.-access.log" common
+</VirtualHost>
+
+
+
« no previous file with comments | « third_party/apache-win32/conf/extra/httpd-userdir.conf ('k') | third_party/apache-win32/conf/httpd.conf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698