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