| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/foyer/current/config/ |
Upload File : |
<?php
return [
'internal_secret' => env('FOYER_INTERNAL_SECRET', ''),
'internal_bind' => env('FOYER_INTERNAL_BIND', '127.0.0.1'),
'agent_worker_url' => env('FOYER_AGENT_WORKER_URL', 'http://127.0.0.1:8800'),
'slot_hold_minutes' => (int) env('FOYER_SLOT_HOLD_MINUTES', 15),
'default_cost_ceiling_micros' => (int) env('FOYER_DEFAULT_COST_CEILING_MICROS', 500000),
'photos' => [
'bucket' => env('FOYER_PHOTOS_BUCKET', 'foyer-photos'),
'region' => env('FOYER_PHOTOS_REGION', 'us-west-2'),
'max_bytes_mms' => 5 * 1024 * 1024,
'max_bytes_web' => 10 * 1024 * 1024,
'allowed_mime' => ['image/jpeg', 'image/png', 'image/heic', 'image/webp'],
],
'quiet_hours' => [
'default_start' => env('FOYER_DEFAULT_QUIET_START', '21:00'),
'default_end' => env('FOYER_DEFAULT_QUIET_END', '08:00'),
],
'demo' => [
'business_slug' => env('FOYER_DEMO_BUSINESS_SLUG', 'anchor-plumbing'),
'daily_limit_per_number' => (int) env('FOYER_DEMO_DAILY_LIMIT_PER_NUMBER', 3),
'twilio_daily_spend_ceiling' => (int) env('FOYER_DEMO_TWILIO_DAILY_SPEND_CEILING', 10000),
],
'llm' => [
'provider' => env('FOYER_LLM_PROVIDER', 'mock'),
'model' => env('FOYER_LLM_MODEL', 'claude-sonnet-4-6'),
],
];