diff --git a/CHANGELOG.md b/CHANGELOG.md index 80f0a35..eb41b4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a CHANGELOG](http://keepachangelog.com). -## [2.1.0] - YYYY-MM-DD +## [2.1.0] - 2017-03-07 ### Changed diff --git a/README.md b/README.md index 31be672..799222a 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ use hollodotme\FastCGI\Client; use hollodotme\FastCGI\SocketConnections\UnixDomainSocket; $connection = new UnixDomainSocket( - 'unix:///var/run/php/php7.0-fpm.sock', # Socket path to php-fpm + 'unix:///var/run/php/php7.1-fpm.sock', # Socket path to php-fpm 5000, # Connect timeout in milliseconds (default: 5000) 5000, # Read/write timeout in milliseconds (default: 5000) false, # Make socket connection persistent (default: false) @@ -96,7 +96,7 @@ use hollodotme\FastCGI\Client; use hollodotme\FastCGI\Requests\PostRequest; use hollodotme\FastCGI\SocketConnections\UnixDomainSocket; -$client = new Client( new UnixDomainSocket( 'unix:///var/run/php/php7.0-fpm.sock' ) ); +$client = new Client( new UnixDomainSocket( 'unix:///var/run/php/php1.0-fpm.sock' ) ); $content = http_build_query( ['key' => 'value'] ); $request = new PostRequest('/path/to/target/script.php', $content);