From 8e0e22d49dd1473ac8d9810ff3d474dd5880685c Mon Sep 17 00:00:00 2001 From: kevgliss Date: Sun, 19 Jul 2015 19:03:04 -0700 Subject: [PATCH] Fixing issue where nginx was not sending the right mimetype for CSS files. --- docs/faq.rst | 11 ++++++++--- docs/production/index.rst | 5 +++++ docs/quickstart/index.rst | 1 + 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/faq.rst b/docs/faq.rst index 115d319f..4354ab9e 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -4,9 +4,14 @@ Frequently Asked Questions Common Problems --------------- -In my startup logs I see *'Aborting... Lemur cannot locate db encryption key, is ENCRYPTION_KEY set?'* - You likely have not correctly configured **ENCRYPTION_KEY**. See - :doc:`administration/configuration` for more information. +In my startup logs I see *'Aborting... Lemur cannot locate db encryption key, is LEMUR_ENCRYPTION_KEY set?'* + You likely have not correctly configured **LEMUR_ENCRYPTION_KEY**. See + :doc:`administration/index` for more information. + + +I am seeing Lemur's javascript load in my browser but not the CSS. + Ensure that you are placing *include mime.types;* to your Nginx static file location. See + :doc:`production/index` for example configurations. How do I diff --git a/docs/production/index.rst b/docs/production/index.rst index c1d8f4ae..0e4829bd 100644 --- a/docs/production/index.rst +++ b/docs/production/index.rst @@ -107,6 +107,7 @@ You can make some adjustments to get a better user experience:: location / { root /www/lemur/lemur/static/dist; + include mime.types; index index.html; } @@ -172,6 +173,7 @@ sensitive nature of Lemur and what it controls makes this essential. This is a s location / { root /www/lemur/lemur/static/dist; + include mime.types; index index.html; } @@ -204,6 +206,9 @@ An example apache config:: Also included in the configurations above are several best practices when it comes to deploying SSL. Things like enabling HSTS, disabling vulnerable ciphers are all good ideas when it comes to deploying Lemur into a production environment. +.. note:: + This is a rather incomplete apache config for running Lemur (needs mod_wsgi etc.,), if you have a working apache config please let us know! + .. seealso:: `Mozilla SSL Configuration Generator `_ diff --git a/docs/quickstart/index.rst b/docs/quickstart/index.rst index 60afa6dd..c63bacee 100644 --- a/docs/quickstart/index.rst +++ b/docs/quickstart/index.rst @@ -147,6 +147,7 @@ You'll use the builtin HttpProxyModule within Nginx to handle proxying location / { root /www/lemur/lemur/static/dist; + include mime.types; index index.html; }