Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/cydrobolt/polr.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJulien <bouiboui@users.noreply.github.com>2016-05-18 16:49:31 +0300
committerJulien <bouiboui@users.noreply.github.com>2016-05-18 16:49:31 +0300
commit96a3ed1190dfdb6cecac3265835f11ebd730bea5 (patch)
tree00b3f34ac4c0fa44d6ed1c5f0e3e738ed3b449e1 /docs
parent0c167cb2394c4080e8b4dec255291d4acdafd376 (diff)
Adds a missing semi-colon to the nginx configuration
Without it nginx fails to restart
Diffstat (limited to 'docs')
-rw-r--r--docs/user-guide/installation.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user-guide/installation.md b/docs/user-guide/installation.md
index fe3495f..9f5c003 100644
--- a/docs/user-guide/installation.md
+++ b/docs/user-guide/installation.md
@@ -131,7 +131,7 @@ server {
fastcgi_pass php;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- fastcgi_param HTTP_HOST $server_name
+ fastcgi_param HTTP_HOST $server_name;
}
}