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

Side by Side Diff: third_party/apache-win32/conf/original/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, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #
2 # Virtual Hosts
3 #
4 # If you want to maintain multiple domains/hostnames on your
5 # machine you can setup VirtualHost containers for them. Most configurations
6 # use only name-based virtual hosts so the server doesn't need to worry about
7 # IP addresses. This is indicated by the asterisks in the directives below.
8 #
9 # Please see the documentation at
10 # <URL:http://httpd.apache.org/docs/2.2/vhosts/>
11 # for further details before you try to setup virtual hosts.
12 #
13 # You may use the command line option '-S' to verify your virtual host
14 # configuration.
15
16 #
17 # Use name-based virtual hosting.
18 #
19 NameVirtualHost *:80
20
21 #
22 # VirtualHost example:
23 # Almost any Apache directive may go into a VirtualHost container.
24 # The first VirtualHost section is used for all requests that do not
25 # match a ServerName or ServerAlias in any <VirtualHost> block.
26 #
27 <VirtualHost *:80>
28 ServerAdmin webmaster@dummy-host.
29 DocumentRoot "D:/src/httpd/docs/dummy-host."
30 ServerName dummy-host.
31 ServerAlias www.dummy-host.
32 ErrorLog "logs/dummy-host.-error.log"
33 CustomLog "logs/dummy-host.-access.log" common
34 </VirtualHost>
35
36 <VirtualHost *:80>
37 ServerAdmin webmaster@dummy-host2.
38 DocumentRoot "D:/src/httpd/docs/dummy-host2."
39 ServerName dummy-host2.
40 ErrorLog "logs/dummy-host2.-error.log"
41 CustomLog "logs/dummy-host2.-access.log" common
42 </VirtualHost>
43
44
45
OLDNEW
« no previous file with comments | « third_party/apache-win32/conf/original/extra/httpd-userdir.conf ('k') | third_party/apache-win32/conf/original/httpd.conf » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698