Skip to content

Commit

Permalink
move urls.py config up higher because its important
Browse files Browse the repository at this point in the history
  • Loading branch information
jcarbaugh committed Apr 8, 2011
1 parent 825637f commit 3c0794b
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions README.rst
Expand Up @@ -222,6 +222,20 @@ or
Some backends will be unable to use SSL. In these cases *USE_SSL* and SSL
detection will be ignored.

urls.py
=======

To serve local media through mediasync, add a reference to mediasync.urls in
your main urls.py file.

::

urlpatterns = ('',
...
url(r'^', include('mediasync.urls)),
...
)

Backends
========

Expand Down Expand Up @@ -434,20 +448,6 @@ your `~/bin` path::
'mediasync.processors.yuicompressor.js_minifier'),
'YUI_COMPRESSOR_PATH': '~/bin/yuicompressor.jar',

urls.py
=======

Add a reference to mediasync.urls in your main urls.py file.

::

urlpatterns = ('',
...
url(r'^', include('mediasync.urls)),
...
)


--------
Features
--------
Expand Down

0 comments on commit 3c0794b

Please sign in to comment.