blob: 8d21c087063cc224420c94053275e2f66cb752f4 [file] [log] [blame]
Scott Zawalski5a3d6052012-02-15 10:33:57 -05001# 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<VirtualHost *:80>
6 DocumentRoot /usr/local/autotest/apache/www/
7 <Directory />
8 Options FollowSymLinks
9 AllowOverride None
10 </Directory>
11 <Directory /usr/local/autotest/apache/www/>
12 Options Indexes FollowSymLinks MultiViews
13 AllowOverride None
14 Order allow,deny
15 allow from all
16 </Directory>
17
18 WSGIScriptAlias / /usr/local/autotest/apache/autotest.wsgi
19 WSGIDaemonProcess autotest_afe user=chromeos-test threads=30
20 WSGIPRocessGroup autotest_afe
21
22 ErrorLog /var/log/apache2/error.log
23 LogLevel warn
24
25 CustomLog /var/log/apache2/access.log combined
26 ServerSignature On
27 RedirectMatch ^/$ /afe
28
29 Include "/usr/local/autotest/apache/conf/all-directives"
30
31</VirtualHost>