diff --git a/doc/htdocs/css/style.css b/doc/htdocs/css/style.css
index a81599bf..6f44bb92 100644
--- a/doc/htdocs/css/style.css
+++ b/doc/htdocs/css/style.css
@@ -103,5 +103,8 @@ ul#actions li a {
text-decoration: none;
}
-
+#faq dt {
+ font-size: 1.5em;
+ font-weight: bold;
+}
diff --git a/doc/htdocs/faq.html b/doc/htdocs/faq.html
index 744b8049..608cfbbc 100644
--- a/doc/htdocs/faq.html
+++ b/doc/htdocs/faq.html
@@ -44,8 +44,23 @@
-
-
Coming soon.
+
+
FAQ
+
+- How to reload my application in Gunicorn ?
+You can gracefully reload by sending HUP signal to gunicorn:
+
+$ kill -HUP masterpid
+
+
+- How to increase/decrease number of running workers ?
+send TTIN/TTOUT signals to do it:
+
+$ kill -TTIN masterpid
+
+will increase the number from one worker
+
+
diff --git a/doc/htdocs/tunning.html b/doc/htdocs/tunning.html
index a0020e7a..0bc8beb6 100644
--- a/doc/htdocs/tunning.html
+++ b/doc/htdocs/tunning.html
@@ -46,8 +46,8 @@
Gunicorn performances are good enough for most cases. Most often performances can be improved in your application.
-
-
Unicorn configration
+
+
Unicorn configuration
See Configuration for more informations.
- worker_processes should be scaled to the number of processes your backend system(s) can support. DO NOT scale it to the number of external network clients your application expects to be serving. Gunicorn is NOT for serving slow clients, that is the job of nginx.
diff --git a/doc/site/faq.rst b/doc/site/faq.rst
index 2890e47f..58a5ef99 100644
--- a/doc/site/faq.rst
+++ b/doc/site/faq.rst
@@ -1,3 +1,17 @@
template: doc.html
-Coming soon.
\ No newline at end of file
+FAQ
+===
+
+How to reload my application in Gunicorn ?
+ You can gracefully reload by sending HUP signal to gunicorn::
+
+ $ kill -HUP masterpid
+
+How to increase/decrease number of running workers ?
+ send TTIN/TTOUT signals to do it::
+
+ $ kill -TTIN masterpid
+
+ will increase the number from one worker
+
diff --git a/doc/site/tunning.rst b/doc/site/tunning.rst
index 70445ee0..5bb55f2c 100644
--- a/doc/site/tunning.rst
+++ b/doc/site/tunning.rst
@@ -3,7 +3,7 @@ template: doc.html
Gunicorn performances are good enough for most cases. Most often performances can be improved in your application.
-Unicorn configration
+Unicorn configuration
----------------------
See `Configuration `_ for more informations.