blob: 61386ed734c66070651b61a64cafb733b69d7951 [file] [log] [blame]
Chris Sosacf1b0682012-06-09 02:58:591# 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
Chris Sosa8227c592012-06-28 23:58:1523 ProxyRequests Off
24 ProxyPassReverse / http://127.0.0.1:8080/
25
Chris Sosacf1b0682012-06-09 02:58:5926 ErrorLog /var/log/apache2/error.log
27 LogLevel warn
28 CustomLog /var/log/apache2/access.log combined
29
30</VirtualHost>