Chris Sosa | cf1b068 | 2012-06-08 19:58:59 -0700 | [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 | # Sets up rewrite rules to have the devserver handle any requests that | ||||
6 | # don't map to an actual file. | ||||
7 | |||||
8 | RewriteEngine on | ||||
9 | RewriteCond %{REQUEST_FILENAME} !-f | ||||
10 | RewriteRule ^(.*) http://127.0.0.1:8080/$1 [proxy] |