blob: 7a528253c86b079fe6e6d8347f0f3a4f93152bd4 [file] [log] [blame]
Chris Sosacf1b0682012-06-08 19:58:59 -07001# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5# Apache configuration to start up a server with document root
6# at /var/www.
7
8<VirtualHost *:8082>
9 ServerAdmin johnhdong@google.com
10
11 DocumentRoot /var/www
12 <Directory />
13 Options FollowSymLinks
14 AllowOverride None
15 </Directory>
16 <Directory /var/www/>
17 Options Indexes FollowSymLinks MultiViews
18 AllowOverride All
19 Order allow,deny
20 allow from all
21 </Directory>
22
23 ErrorLog /var/log/apache2/error.log
24 LogLevel warn
25 CustomLog /var/log/apache2/access.log combined
26
27</VirtualHost>