|
- <?php
- return [
- 'backups' => [
- 'enabled' => false,
- // Confirm exact runtime types/values on contracted AND uncontracted services first.
- 'option_values_confirmed' => false,
- 'active_values' => ['Backup diario' => [], 'Backup diario VPS' => []], // Strict PHP identity (===), no truthiness or coercion.
- 'endpoint' => '', // Fixed HTTPS CGI path without query, fragment or embedded credentials.
- 'username' => '', // HTTP Basic over verified TLS; confirm account permissions.
- 'password' => '',
- 'source_timezone' => '', // Verified IANA identifier, never inferred.
- 'connect_timeout_seconds' => 2,
- 'timeout_seconds' => 5,
- 'max_response_bytes' => 2097152,
- 'cache_directory' => '', // Existing private directory, mode 0700, outside web roots/aliases.
- 'cache_ttl_seconds' => 120,
- 'stale_max_age_seconds' => 900,
- 'max_visible_copies' => 5,
- ],
- 'vpsmanager_api_url' => '',
- 'graphite_url' => '',
- 'graphite_auth' => 'none', // Set to basic when the Graphite HTTPS proxy requires it.
- 'graphite_username' => '',
- 'graphite_password' => '',
- 'graphs_authorization_confirmed' => false,
- 'graphs_url' => '', // Optional existing full graphs UI base URL; review its authorization.
- ];
|