SIMON Master Console Rebuild
True command center for SIMON + WEB360
This rebuild gives you a cleaner production spine: interactive tree, live viewer, guarded editor, dynamic graphics, architecture map, and note storage. It is designed to sit beside your existing
console.php
and become the stronger replacement path.
Dashboard
Tree
Viewer
System Map
File Registry
Notes
Files
15,279
Folders
408
Scanned Size
3.84 GB
PHP Files
891
Editable Text Files
12,540
File viewer
guarded to /htdocs
/connlink/test1/ui/old/secrets.php
<?php /* ============================================================ * SIMON ยท Server-side secrets * ------------------------------------------------------------ * Upload to (RECOMMENDED, outside web root): * /private/secure/secrets.php * Or, if you can't reach above /htdocs: * /htdocs/secrets.php (same folder as the proxies) * * IMPORTANT: keys MUST live INSIDE the quotes: * 'KEY_NAME' => 'paste-key-here', * Anything outside the quotes is PHP code and will crash the * proxy with HTTP 500. * * NEVER commit this file to git. * NEVER let it be served as plain text. Block with .htaccess: * <Files secrets.php>Require all denied</Files> * ============================================================ */ return [ /* ===== NewsAPI (newsapi.org) =============================== Free Developer plan: 1000 requests/day. Used by: newsapi_proxy.php (powers the "News" engine). */ 'NEWSAPI_KEY' => '31f4123689874e16b7acda3631a01ace', /* ===== Google Programmable Search Engine (CSE) ============= Free tier: 100 queries/day. Paid: $5 per 1000 after that. Used by: gsearch_proxy.php (powers the "Google" engine). KEY (starts with "AIza..."): https://console.cloud.google.com/apis/credentials Then enable "Custom Search API" in APIs & Services > Library. CX (Search Engine ID): https://programmablesearchengine.google.com Create > "Search the entire web" ON > copy "Search engine ID". */ 'GOOGLE_CSE_KEY' => 'AIzaSyDA35OlrR8tkzeN7X80SmAqzH2BEcMfwS4', 'GOOGLE_CSE_CX' => '67a3dfd7b52f243ab', /* ===== Bing / DuckDuckGo =================================== NOT REQUIRED โ both proxies scrape public HTML and need no API key. Microsoft retired the official Bing Search API on 11 Aug 2025; DuckDuckGo has no public organic-results API. These slots exist so you can drop in a paid replacement later (Brave Search, SerpAPI, Serper.dev, ScaleSerp, etc.) without editing the proxy code. Leave blank for now. */ 'BING_API_KEY' => '', // unused (legacy Bing v7 โ retired) 'DDG_API_KEY' => '', // unused (no official API exists) /* ===== Drop-in alternatives (optional) ===================== If/when you grab one of these, paste the key here and the proxy can be updated to consume it. */ 'BRAVE_SEARCH_KEY' => '', // https://api.search.brave.com (2,000 free / month) 'SERPAPI_KEY' => '', // https://serpapi.com (100 free / month) 'SERPER_KEY' => '', // https://serper.dev (2,500 free credits) 'SCALESERP_KEY' => '', // https://www.scaleserp.com 'YOU_API_KEY' => '', // https://api.you.com (You.com search) 'KAGI_SEARCH_KEY' => '', // https://help.kagi.com/kagi/api/search.html 'TAVILY_API_KEY' => '', // https://tavily.com (LLM-tuned search) /* ===== NASA (api.nasa.gov) ================================= Optional. DEMO_KEY works but is rate-limited (30/hr, 50/day). Get your own (instant, free) at https://api.nasa.gov */ 'NASA_API_KEY' => '', /* ===== Webhook inbox security ============================== If empty: webhook_inbox.php is OPEN (anyone can POST). If set: senders must include ?key=THIS_VALUE or X-Signature: hmac-sha256(body, THIS_VALUE) Recommended: 32+ random chars. */ 'SIMON_WEBHOOK_SECRET' => '', /* ===== Reserved placeholders for future engines ============ Add to taste โ keeps the secrets file as the single source of truth so individual proxies stay key-free. */ 'OPENAI_API_KEY' => '', 'ANTHROPIC_API_KEY' => '', 'PERPLEXITY_API_KEY' => '', 'EXA_API_KEY' => '', 'WOLFRAM_APPID' => '', 'WEATHERAPI_KEY' => '', 'OPENWEATHER_KEY' => '', 'ALPHAVANTAGE_KEY' => '', 'FINNHUB_KEY' => '', 'POLYGON_KEY' => '', 'YOUTUBE_API_KEY' => '', 'REDDIT_CLIENT_ID' => '', 'REDDIT_CLIENT_SECRET' => '', 'GITHUB_TOKEN' => '', 'MAPBOX_TOKEN' => '', 'GOOGLE_MAPS_KEY' => '', 'STRIPE_SECRET_KEY' => '', 'SENDGRID_API_KEY' => '', 'TWILIO_ACCOUNT_SID' => '', 'TWILIO_AUTH_TOKEN' => '', ];
Save file
Quick jump
open a path
Open