Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $config = [
- // All Shared settings
- 'shared' => [
- 'listenOn' => '*:1337', // Default port
- 'logErrorsTo' => 'php://stderr'
- ],
- 'hosts' => [
- 'http' => [
- 'defaultContentType' => 'text/html',
- 'defaultTextCharset' => 'utf-8',
- 'allowedMethods' => [
- 'GET',
- 'HEAD',
- 'OPTIONS',
- 'POST',
- 'PUT',
- 'PATCH',
- 'TRACE',
- 'DELETE'
- ],
- 'application' => $webApp
- ]
- ,
- 'https' => [
- 'listenOn' => '*:1443', // TSL Port
- 'local_cert' => __DIR__ . '/support/localhost_cert.pem',
- 'passphrase' => '42 is not a legitimate passphrase',
- 'application' => $webApp
- ],
- 'websocket' => [
- 'application' => $webSocket
- ],
- 'socket' => [
- 'upgradeToken' => 'line-feed-chat',
- 'application' => $socketApp
- ],
- 'webrct' => [
- 'signaling' => '0xsend_receive',
- 'application' => $signalApp
- ]
- ]
- ];
- ?>
Advertisement
Add Comment
Please, Sign In to add comment