You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Updating links and examples to use Swoole instead of OpenSwoole (#170)
https://swoole.co.uk/ redirects to OpenSwoole, which is a different
extension than Swoole. This updates the README.md file with the correct
examples for Swoole.
You can define some configurations using Symfony's Runtime `APP_RUNTIME_OPTIONS` API.
65
+
You can define some configurations using Symfony's Runtime [`APP_RUNTIME_OPTIONS` API](https://symfony.com/doc/current/components/runtime.html#using-options).
66
66
67
67
| Option | Description | Default |
68
68
| --- | --- | --- |
69
69
|`host`| The host where the server should binds to (precedes `SWOOLE_HOST` environment variable) |`127.0.0.1`|
70
70
|`port`| The port where the server should be listing (precedes `SWOOLE_PORT` environment variable) |`8000`|
71
71
|`mode`| Swoole's server mode (precedes `SWOOLE_MODE` environment variable) |`SWOOLE_PROCESS`|
72
-
|`settings`| All Swoole's server settings ([swoole.co.uk/docs/modules/swoole-server/configuration](https://www.swoole.co.uk/docs/modules/swoole-server/configuration)) |`[]`|
72
+
|`settings`| All Swoole's server settings ([wiki.swoole.com/en/#/server/setting](https://wiki.swoole.com/en/#/server/setting) and [wiki.swoole.com/en/#/http_server?id=configuration-options](https://wiki.swoole.com/en/#/http_server?id=configuration-options)) |`[]`|
return new Kernel($context['APP_ENV'], (bool) $context['APP_DEBUG']);
@@ -52,14 +52,14 @@ return function (array $context) {
52
52
53
53
## Using Options
54
54
55
-
You can define some configurations using Symfony's Runtime `APP_RUNTIME_OPTIONS` API.
55
+
You can define some configurations using Symfony's Runtime [`APP_RUNTIME_OPTIONS` API](https://symfony.com/doc/current/components/runtime.html#using-options).
56
56
57
57
| Option | Description | Default |
58
58
| --- | --- | --- |
59
59
|`host`| The host where the server should binds to (precedes `SWOOLE_HOST` environment variable) |`127.0.0.1`|
60
60
|`port`| The port where the server should be listing (precedes `SWOOLE_PORT` environment variable) |`8000`|
61
61
|`mode`| Swoole's server mode (precedes `SWOOLE_MODE` environment variable) |`SWOOLE_PROCESS`|
62
-
|`settings`| All Swoole's server settings ([swoole.co.uk/docs/modules/swoole-server/configuration](https://www.swoole.co.uk/docs/modules/swoole-server/configuration)) |`[]`|
62
+
|`settings`| All Swoole's server settings ([wiki.swoole.com/en/#/server/setting](https://wiki.swoole.com/en/#/server/setting) and [wiki.swoole.com/en/#/http_server?id=configuration-options](https://wiki.swoole.com/en/#/http_server?id=configuration-options)) |`[]`|
0 commit comments