Chris Sosa | cf1b068 | 2012-06-09 02:58:59 | [diff] [blame] | 1 | # 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 Sosa | 8227c59 | 2012-06-28 23:58:15 | [diff] [blame] | 23 | ProxyRequests Off |
| 24 | ProxyPassReverse / http://127.0.0.1:8080/ |
| 25 | |
Chris Sosa | cf1b068 | 2012-06-09 02:58:59 | [diff] [blame] | 26 | ErrorLog /var/log/apache2/error.log |
| 27 | LogLevel warn |
| 28 | CustomLog /var/log/apache2/access.log combined |
| 29 | |
| 30 | </VirtualHost> |