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:
authorChaoyi Zha <summermontreal@gmail.com>2016-07-22 21:42:33 +0300
committerChaoyi Zha <summermontreal@gmail.com>2016-07-22 21:42:33 +0300
commitdaea29bca5589cb5eb2186a80daffecc8940cec1 (patch)
treedafdef7ed7e78f5768e18c2272852d4b67b4e072 /docs
parenta7c1730b78a60e8e03c17f03004f6ec813267a1d (diff)
php-fpm not php5-fpm
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 612e299..ff005fb 100644
--- a/docs/user-guide/installation.md
+++ b/docs/user-guide/installation.md
@@ -105,7 +105,7 @@ Useful LEMP installation tutorial by [DigitalOcean](https://www.digitalocean.com
```nginx
# Upstream to abstract backend connection(s) for php
upstream php {
- server unix:/var/run/php5-fpm.sock;
+ server unix:/var/run/php-fpm.sock;
server 127.0.0.1:9000;
}