{% load i18n %}

{% trans "Static media directory changes" %}

{% blocktrans %} The location of static media files (CSS, JavaScript, images) has changed. You will need to make manual changes to your web server configuration. {% endblocktrans %}

{% blocktrans %} For Apache, you will need to add: {% endblocktrans %}

  $ Alias {{SITE_ROOT}}static "{{STATIC_ROOT}}"

{% blocktrans %} For lighttpd, add the following to alias.url: {% endblocktrans %}

  $ "{{SITE_ROOT}}static" => "{{STATIC_ROOT}}"

{% blocktrans %} These lines will look similar to the existing lines for the media files. {% endblocktrans %}

{% blocktrans %} Once you have made these changes, type the following to resolve this: {% endblocktrans %}

  $ rb-site manage {{SITE_DIR}} resolve-check static-media