diff --git a/CHANGELOG.md b/CHANGELOG.md index 098e3df..0721080 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,10 @@ # Changelog +## [1.0.8] - 2020-02-29 + +### Fixed + +- Configuration is now compatible with Uniquity devtools. Thanks to @wizzybenson + ## [1.0.7] - 2020-02-29 ### Added @@ -29,7 +35,7 @@ - First stable release - +[1.0.8]: https://github.com/Lapinskas/roadrunner-ubiquity/releases/tag/1.0.8 [1.0.7]: https://github.com/Lapinskas/roadrunner-ubiquity/releases/tag/1.0.7 [1.0.6]: https://github.com/Lapinskas/roadrunner-ubiquity/releases/tag/1.0.6 [1.0.4]: https://github.com/Lapinskas/roadrunner-ubiquity/releases/tag/1.0.4 diff --git a/composer.json b/composer.json index d23efbc..dfc34d5 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "lapinskas/roadrunner-ubiquity", "type": "library", - "version": "1.0.7", + "version": "1.0.8", "description": "RoadRunner and Ubiquity integration", "keywords": ["roadrunner","ubiquity"], "homepage": "https://github.com/Lapinskas/roadrunner-ubiquity", diff --git a/sample/rr-worker.php b/sample/rr-worker.php index 4d59bba..7648e1d 100644 --- a/sample/rr-worker.php +++ b/sample/rr-worker.php @@ -10,7 +10,9 @@ ini_set('max_execution_time', 0); $config=include_once ROOT . 'config/config.php'; -$config['siteUrl'] = 'http://127.0.0.1:8090/'; +$sConfig= include __DIR__.\DS.'config.php'; +$config ["siteUrl"] = 'http://'.$sConfig['host'].':'.$sConfig['port'].'/'; +$config ['sessionName'] = $sConfig['sessionName']; require_once ROOT.'../vendor/autoload.php'; require_once ROOT.'config/services.php';