mirror of
https://github.com/wavelog/wavelog
synced 2026-08-13 18:41:16 -04:00
73 lines
No EOL
2.8 KiB
PHP
73 lines
No EOL
2.8 KiB
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
/*
|
|
| -------------------------------------------------------------------------
|
|
| Wavelog Worker Configuration
|
|
| -------------------------------------------------------------------------
|
|
|
|
|
| Optional WebSocket gateway for real-time updates in the browser. Requires
|
|
| the separate wavelog_worker service. Set worker_enabled = true to activate.
|
|
| Wavelog falls back to the classic AJAX heartbeat when disabled.
|
|
|
|
|
*/
|
|
|
|
/**
|
|
* Enable or disable the Worker integration entirely.
|
|
*/
|
|
$config['worker_enabled'] = false;
|
|
|
|
/**
|
|
* Optional VIP/load-balancer URL shown as a connectivity check in the debug page.
|
|
* Leave empty for single-instance setups.
|
|
*/
|
|
$config['worker_vip'] = '';
|
|
|
|
/**
|
|
* Internal URLs of wavelog_worker instances (PHP -> Worker, HTTP).
|
|
* Single instance: one entry. Cluster: one entry per node.
|
|
* PHP publishes to the first entry; the debug page shows status of all nodes.
|
|
* Keep in Mind: If you enter more than one worker url, it means you run a cluster. In this case you need
|
|
* a Redis / Valkey instance. More info you can find in the wavelog_worker sample config.yaml.
|
|
*/
|
|
$config['worker_urls'] = [
|
|
'http://127.0.0.1:9001',
|
|
];
|
|
|
|
/**
|
|
* Shared secret — must match worker_secret in the worker's config.yaml.
|
|
* Generate with: openssl rand -hex 32
|
|
*/
|
|
$config['worker_secret'] = '';
|
|
|
|
/**
|
|
* Timeout for publish calls in seconds (float). Keep it short:
|
|
* a slow worker must not block QSO saves.
|
|
*/
|
|
$config['worker_timeout'] = 1.0;
|
|
|
|
/**
|
|
* Public WebSocket URL for the browser (Browser -> Worker).
|
|
* May differ from worker_url when behind a reverse proxy or in Docker.
|
|
* Format: ws://host:port or wss://host:port. Empty = no WebSocket in browser.
|
|
*/
|
|
$config['worker_client_url'] = 'ws://log.example.org:9000';
|
|
|
|
/**
|
|
* Optional: Override the default HMAC token expiration time (in seconds) for browser connections.
|
|
* Default: 24h (86400 seconds). Can not be 0 or negative.
|
|
*
|
|
* Important:
|
|
* This only controls the token expiration for the browser. The worker itself has another TTL which
|
|
* is applied for the topics themselves. This is configured in the worker's config.yaml (default 24h).
|
|
* If you want to change the token expiration for the browser, you may want to also change the topic
|
|
* expiration in the worker's config.yaml to match. Otherwise, the token may be valid but the topic may have expired.
|
|
* Also keep in mind that there is also a PHP session expiration which may be shorter than the token
|
|
* expiration. If the PHP session expires, the token will be invalidated as well. You can control the
|
|
* PHP session expiration in application/config/config.php
|
|
*
|
|
* Ah and before I forget: Your reverse proxy may also have a timeout for WebSocket connections.
|
|
*
|
|
* Just reload your damn browser once a day :-D
|
|
*/
|
|
// $config['worker_token_expiration'] = 86400;
|