Fix domain part of example S3 URL.

This commit is contained in:
Philipp Bosch
2011-12-25 23:53:05 +01:00
parent 66dfda5036
commit 917e59b826

View File

@@ -26,7 +26,7 @@ from the 3rd party app `django-storages`_. Some required settings are::
Next, you need to specify the new CDN base URL and update the URLs to the Next, you need to specify the new CDN base URL and update the URLs to the
files in your templates which you want to compress:: files in your templates which you want to compress::
COMPRESS_URL = "http://compressor-test.s3.amazon.com/" COMPRESS_URL = "http://compressor-test.s3.amazonaws.com/"
.. note:: .. note::
@@ -78,7 +78,7 @@ integrated.
#. To have Django correctly render the URLs to your static files, set the #. To have Django correctly render the URLs to your static files, set the
STATIC_URL_ setting to the same value as STATIC_URL_ setting to the same value as
:attr:`~django.conf.settings.COMPRESS_URL` (e.g. :attr:`~django.conf.settings.COMPRESS_URL` (e.g.
``"http://compressor-test.s3.amazon.com/"``). ``"http://compressor-test.s3.amazonaws.com/"``).
.. _CDN: http://en.wikipedia.org/wiki/Content_delivery_network .. _CDN: http://en.wikipedia.org/wiki/Content_delivery_network
.. _Amazon S3: https://s3.amazonaws.com/ .. _Amazon S3: https://s3.amazonaws.com/