1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-09-19 23:21:47 +02:00

Merge branch 'peterlewis-patch-1'

This commit is contained in:
Chaoyi Zha 2016-07-22 11:41:36 -07:00
commit a7c1730b78

View File

@ -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/php-fpm.sock;
server unix:/var/run/php5-fpm.sock;
server 127.0.0.1:9000;
}
@ -157,7 +157,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;
# }
#}
```