alawar / nginx_push_stream_bundle
dev-master
2016-03-09 17:53 UTC
Requires
- guzzle/guzzle: ~3.7
Requires (Dev)
- satooshi/php-coveralls: ~1.0.0
- symfony/framework-bundle: ~2.2
This package is not auto-updated.
Last update: 2025-03-29 16:18:23 UTC
README
nginx_push_stream_bundle
A PHP bundle to assist your nginx_push_stream_module installation:
- Generate links on server side.
- Publish messages.
- Automatically generate ids for messages on server side.
- Filter tokens:
- Hash token names in order to make them unpredictable and thus more secure.
- Prefix tokens to separate your applications sharing the same nginx_push_stream_module locations.
Installation
composer require alawar/nginx_push_stream_bundle dev-master
Usage
In Symfony2 you should register the bundle. Then add the following config:
nginx_push_stream: pub_url: http://.../pub?id={token} sub_urls: polling: http://.../sub-p/{tokens} long-polling: http://.../sub-lp/{tokens} streaming: http://.../sub-s/{tokens} eventsource: http://.../sub-ev/{tokens}