andreybolonin / swoole-http-server-bundle
Implements swoole php extension in symfony projects
dev-master
2018-07-13 07:03 UTC
Requires
- php: >=7.1
- symfony/framework-bundle: ^4
Requires (Dev)
- eaglewu/swoole-ide-helper: dev-master
- friendsofphp/php-cs-fixer: ^2.12
- phpstan/phpstan: ^0.10.1
This package is not auto-updated.
Last update: 2024-11-17 14:10:22 UTC
README
run symfony in swoole
1 install
composer require andreybolonin/swoole-http-server-bundle:dev-master
2 define commands in services.yaml
Swoole\HttpServerBundle\Command\RunCommand:
tags:
- { name: 'console.command', command: 'swoole:run' }
Swoole\HttpServerBundle\Command\StatusCommand:
tags:
- { name: 'console.command', command: 'swoole:status' }
Swoole\HttpServerBundle\Command\StopCommand:
tags:
- { name: 'console.command', command: 'swoole:stop' }
Swoole\HttpServerBundle\Command\StartCommand:
tags:
- { name: 'console.command', command: 'swoole:start' }
2 swoole http server command
* bin/console swoole:run --evn=dev
* bin/console swoole:start --evn=prod
* bin/console swoole:status
* bin/console swoole:stop
* bin/console swoole:reload
3 nginx proxy config
server {
listen 80;
server_name youdomain.com;
location / {
proxy_connect_timeout 300;
proxy_send_timeout 300;
proxy_read_timeout 300;
send_timeout 300;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:2345/;
proxy_redirect off;
}
}