diff options
| author | Timo Graham <timograham@gmail.com> | 2010-12-30 13:29:57 +0000 |
|---|---|---|
| committer | Timo Graham <timograham@gmail.com> | 2010-12-30 13:29:57 +0000 |
| commit | aff5c467c19ba9afd9d95d3a60e1a7c4eb8f25a3 (patch) | |
| tree | e859f3f19db37650e1a4324fa3d48cfe55761987 | |
| parent | 946e87ded1a281c187bfa42e28a7404223770eb4 (diff) | |
Fixed #13912 - Fixed AliasMatch regex in modwsgi docs. Thanks SmileyChris for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15115 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/howto/deployment/modwsgi.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/deployment/modwsgi.txt b/docs/howto/deployment/modwsgi.txt index cee0b14a38..e37c7e636c 100644 --- a/docs/howto/deployment/modwsgi.txt +++ b/docs/howto/deployment/modwsgi.txt @@ -83,7 +83,7 @@ file. All other URLs will be served using mod_wsgi:: Alias /robots.txt /usr/local/wsgi/static/robots.txt Alias /favicon.ico /usr/local/wsgi/static/favicon.ico - AliasMatch /([^/]*\.css) /usr/local/wsgi/static/styles/$1 + AliasMatch ^/([^/]*\.css) /usr/local/wsgi/static/styles/$1 Alias /media/ /usr/local/wsgi/static/media/ |
