commit bb86cba6b18adc3591ff34e20d869d81ef48f532 Author: zhuifenghero Date: Fri May 15 17:08:05 2026 +0000 Initial commit diff --git a/config/bookmarks.yaml b/config/bookmarks.yaml new file mode 100644 index 0000000..9e7b48c --- /dev/null +++ b/config/bookmarks.yaml @@ -0,0 +1,49 @@ +--- +# For configuration options and examples, please see: +# https://gethomepage.dev/configs/bookmarks + +- 公司网站: + - OA: + - icon: mdi-briefcase-check # 修正图标名 + href: http://43.157.67.243/seeyon/main.do?method=index + - Netsuite: + - icon: mdi-cloud-check # 修正图标名 + href: https://7179497.app.netsuite.com/ + - 企业邮箱: + - icon: mdi-mailbox-up # 修正图标名 + href: https://qiye.aliyun.com/ + - 西部水泥官网: + - icon: mdi-factory + href: http://www.westchinacement.com/gb/ir/announcements_hk.htm + - 尧柏国际官网: + - icon: mdi-factory + href: http://www.westinternational.cn + +- 常用工具: + - Outlook 邮箱: + - icon: microsoft-outlook # 修正图标名 + href: https://outlook.live.com/ + - DeepL 翻译: + - icon: deepl + href: https://www.deepl.com/translator + - 汇率查询 (XE): + - icon: mdi-currency-usd + href: https://www.xe.com/currencyconverter/ + description: 全球即时汇率查询 + - AI 助手 (ChatGPT): + - icon: mdi-robot-variant + href: https://chatgpt.com + description: 智能文案与问题解决 +- 学习与探索: + - IFRS: + - icon: mdi-book-open-variant # 这是一个漂亮的地球图标 + href: https://www.ifrs.org/issued-standards/list-of-standards/ + - 维基百科: + - icon: wikipedia + href: https://zh.wikipedia.org/ + - YouTube: + - icon: youtube + href: https://youtube.com/ + - 哔哩哔哩: + - icon: bilibili + href: https://www.bilibili.com/ diff --git a/config/custom.css b/config/custom.css new file mode 100644 index 0000000..629a8b9 --- /dev/null +++ b/config/custom.css @@ -0,0 +1,28 @@ +#ai-chat { + width: 460px !important; + right: 20px !important; + left: auto !important; +} + +@media (max-width: 520px) { + #ai-chat { + width: calc(100vw - 16px) !important; + right: 8px !important; + left: 8px !important; + bottom: 12px !important; + height: 75vh !important; + max-height: 580px !important; + } + + #ai-chat a { + word-break: break-all !important; + } + + #ai-messages { + padding: 10px !important; + } + + #ai-input { + font-size: 16px !important; + } +} diff --git a/config/custom.js b/config/custom.js new file mode 100644 index 0000000..2535f7e --- /dev/null +++ b/config/custom.js @@ -0,0 +1,103 @@ +(function() { + var chatCreated = false; + + function createChat() { + if (chatCreated) return; + chatCreated = true; + + const chat = document.createElement('div'); + chat.id = 'ai-chat'; + chat.style.cssText = 'display:none;position:fixed;bottom:20px;right:20px;width:460px;height:640px;background:#1e2130;border-radius:16px;box-shadow:0 20px 60px rgba(0,0,0,0.6);z-index:9999;flex-direction:column;overflow:hidden;border:1px solid #374151;'; + chat.innerHTML = '
🔍 YBIH 智能助手
👋 你好!请输入问题搜索知识库。
'; + document.body.appendChild(chat); + + document.getElementById('ai-chat-close').onclick = function() { chat.style.display = 'none'; }; + + async function sendMessage() { + const input = document.getElementById('ai-input'); + const q = input.value.trim(); + if (!q) return; + input.value = ''; + const messages = document.getElementById('ai-messages'); + + const userMsg = document.createElement('div'); + userMsg.style.cssText = 'background:#3b82f6;border-radius:12px 12px 4px 12px;padding:10px 14px;color:#fff;font-size:14px;align-self:flex-end;max-width:85%;word-break:break-all'; + userMsg.textContent = q; + messages.appendChild(userMsg); + + const aiMsg = document.createElement('div'); + aiMsg.style.cssText = 'background:#2d3250;border-radius:12px 12px 12px 4px;padding:14px;color:#e2e8f0;font-size:14px;max-width:100%'; + aiMsg.innerHTML = '⏳ 搜索中...'; + messages.appendChild(aiMsg); + messages.scrollTop = messages.scrollHeight; + + try { + const res = await fetch('/aisearch?q=' + encodeURIComponent(q)); + const data = await res.json(); + let html = ''; + if (data.sources && data.sources.length) { + const sorted = data.sources.slice().sort((a,b) => a.score - b.score); + html += '
📄 相关文章(相关度从低到高)
'; + for (const s of sorted) { + html += '
'+s.title+'
'+s.content+'
相关度 '+Math.round(s.score*100)+'%
'; + } + } + html += '
' + (data.answer||'') + '
'; + aiMsg.innerHTML = html; + } catch(err) { + aiMsg.innerHTML = '搜索失败: ' + err.message + ''; + } + messages.scrollTop = messages.scrollHeight; + } + + document.getElementById('ai-send').onclick = sendMessage; + document.getElementById('ai-input').addEventListener('keydown', function(e) { + if (e.key === 'Enter') sendMessage(); + }); + } + + // 在 document 级别捕获所有 keydown 事件 + document.addEventListener('keydown', function(e) { + if (e.key !== 'Enter') return; + const t = e.target; + if (!t || (t.tagName !== 'INPUT' && t.tagName !== 'TEXTAREA')) return; + // 判断是搜索框(不是 ai-input 自己) + if (t.id === 'ai-input') return; + + const q = t.value.trim(); + if (!q) return; + + e.preventDefault(); + e.stopImmediatePropagation(); + + createChat(); + t.value = ''; + + const chat = document.getElementById('ai-chat'); + chat.style.display = 'flex'; + chat.style.flexDirection = 'column'; + document.getElementById('ai-input').value = q; + document.getElementById('ai-send').click(); + }, true); + + // 同时拦截 form submit + document.addEventListener('submit', function(e) { + const input = e.target.querySelector('input'); + if (!input || input.id === 'ai-input') return; + const q = input.value.trim(); + if (!q) return; + + e.preventDefault(); + e.stopImmediatePropagation(); + + createChat(); + input.value = ''; + + const chat = document.getElementById('ai-chat'); + chat.style.display = 'flex'; + chat.style.flexDirection = 'column'; + document.getElementById('ai-input').value = q; + document.getElementById('ai-send').click(); + }, true); + +})(); diff --git a/config/docker.yaml b/config/docker.yaml new file mode 100644 index 0000000..2f4c4e3 --- /dev/null +++ b/config/docker.yaml @@ -0,0 +1,10 @@ +--- +# For configuration options and examples, please see: +# https://gethomepage.dev/configs/docker/ + +# my-docker: +# host: 127.0.0.1 +# port: 2375 + +# my-docker: +# socket: /var/run/docker.sock diff --git a/config/icons/manageio.png b/config/icons/manageio.png new file mode 100644 index 0000000..45d1730 Binary files /dev/null and b/config/icons/manageio.png differ diff --git a/config/kubernetes.yaml b/config/kubernetes.yaml new file mode 100644 index 0000000..aca6e82 --- /dev/null +++ b/config/kubernetes.yaml @@ -0,0 +1,2 @@ +--- +# sample kubernetes config diff --git a/config/logs/homepage.log b/config/logs/homepage.log new file mode 100644 index 0000000..4787a1c --- /dev/null +++ b/config/logs/homepage.log @@ -0,0 +1,574 @@ +[2026-02-04T18:39:57.804Z] info: kubernetes.yaml was copied to the config folder +[2026-02-04T18:42:20.750Z] info: custom.css was copied to the config folder +[2026-02-04T18:42:20.752Z] info: custom.js was copied to the config folder +[2026-02-10T11:49:29.427Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:29.855Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:29.878Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:29.909Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:29.959Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:30.016Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:30.041Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:30.067Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:30.094Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:30.245Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:30.529Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.468Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.802Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.821Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.845Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.857Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.872Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.887Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.924Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:32.940Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:33.139Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:33.293Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:33.417Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:39.384Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:39.395Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:49:39.666Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:50:04.387Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:50:04.407Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:50:04.667Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:50:12.872Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:50:12.886Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:13.980Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:14.153Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:14.622Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.521Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.556Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.646Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.690Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.713Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.742Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.794Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.827Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:15.845Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:16.091Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:16.934Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.327Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.668Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.703Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.723Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.749Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.772Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.870Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.904Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.921Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:19.931Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:20.110Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:20.383Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:22.485Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.397Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.697Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.714Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.729Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.742Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.756Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.816Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.834Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.850Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:23.872Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:24.091Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:24.358Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:25.496Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:26.356Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:30.966Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:30.982Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:36.962Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:36.980Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:37.236Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:52:37.939Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:48.126Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:48.193Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:48.482Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:48.914Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:49.414Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:49.452Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:49.766Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:49.830Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:49.854Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:49.882Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:50.529Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:50.546Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:50.557Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:50.568Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:50.579Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-02-10T11:59:51.846Z] error: Host validation failed for: ybih.140103.xyz. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:13.225Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:16.088Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:16.096Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:16.103Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:16.426Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:16.438Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:16.445Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:16.453Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:23.429Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:23.718Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:25.507Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:36.596Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:36.880Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:37.155Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:01:39.920Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:05.244Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:07.029Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:07.120Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:07.135Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:07.231Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:07.248Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:07.304Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:07.390Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-01T12:12:07.630Z] error: Host validation failed for: 77.93.152.242:11006. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-03-27T16:48:14.341Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T16:48:14.353Z] error: YAMLException: can not read an implicit mapping pair; a colon is missed (10:31) + + 7 | - 云端存储: + 8 | icon: nextcloud.png + 9 | href: https://nextcloud.140103.xyz + 10 | description:空间大,存放历史数据 +------------------------------------^ + 11 | + 12 | +[2026-03-27T16:48:14.637Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T16:48:14.638Z] error: YAMLException: can not read an implicit mapping pair; a colon is missed (10:31) + + 7 | - 云端存储: + 8 | icon: nextcloud.png + 9 | href: https://nextcloud.140103.xyz + 10 | description:空间大,存放历史数据 +------------------------------------^ + 11 | + 12 | +[2026-03-27T16:48:16.761Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T16:48:16.763Z] error: YAMLException: can not read an implicit mapping pair; a colon is missed (10:31) + + 7 | - 云端存储: + 8 | icon: nextcloud.png + 9 | href: https://nextcloud.140103.xyz + 10 | description:空间大,存放历史数据 +------------------------------------^ + 11 | + 12 | +[2026-03-27T18:42:57.630Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:42:57.654Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "https://upload.140103. ... +[2026-03-27T18:42:58.377Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:42:58.379Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "https://upload.140103. ... +[2026-03-27T18:42:59.406Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:42:59.407Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "https://upload.140103. ... +[2026-03-27T18:43:00.230Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:43:00.231Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "https://upload.140103. ... +[2026-03-27T18:43:02.044Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:43:02.046Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "https://upload.140103. ... +[2026-03-27T18:46:16.622Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:46:16.623Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "https://upload.140103. ... +[2026-03-27T18:46:18.654Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:46:18.656Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "https://upload.140103. ... +[2026-03-27T18:46:20.582Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:46:20.583Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "https://upload.140103. ... +[2026-03-27T18:53:13.049Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:53:13.050Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "mdi-upload-box" +[2026-03-27T18:53:13.716Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:53:13.717Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "mdi-upload-box" +[2026-03-27T18:53:14.670Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:53:14.671Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "mdi-upload-box" +[2026-03-27T18:53:18.137Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:53:18.137Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "mdi-upload-box" +[2026-03-27T18:53:20.805Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:53:20.806Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "mdi-upload-box" +[2026-03-27T18:59:18.537Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:59:18.538Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "mdi-upload-box" +[2026-03-27T18:59:20.603Z] error: Failed to load services.yaml, please check for errors +[2026-03-27T18:59:20.603Z] error: YAMLException: bad indentation of a sequence entry (59:3) + + 56 | href: http://63.35.242.21 ... + 57 | description: WIKI平台 + 58 | + 59 | - name: 上传平台 +--------^ + 60 | url: "https://upload.140103.xyz" + 61 | icon: "mdi-upload-box" +[2026-04-25T05:04:48.506Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:04:48.610Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:04:48.688Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:04:48.740Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:04:48.759Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:04:48.875Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:02.384Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:03.195Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:03.206Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:03.221Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:03.237Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:03.249Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:03.259Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:03.512Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:08.536Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:05:08.665Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:18.237Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:18.475Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:18.481Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:18.500Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:18.507Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:18.513Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:18.536Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:51.010Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:06:51.024Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:04.377Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:05.227Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:05.234Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:05.243Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:05.250Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:05.258Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:05.269Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:05.502Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:07:05.516Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:11:25.188Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:11:25.195Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:11:25.531Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:11:27.181Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:13:06.031Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:13:06.039Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:38.044Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:38.067Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:38.435Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:39.687Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:40.855Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:40.864Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:40.869Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:40.947Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:40.956Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:40.964Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:41.020Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:41.627Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:42.000Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:59.031Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:14:59.043Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:30.977Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:30.990Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:31.328Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.085Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.474Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.490Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.503Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.521Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.532Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.548Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.574Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:33.854Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:34.211Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.212Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.596Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.610Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.620Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.630Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.643Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.654Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.666Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:36.985Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:15:37.327Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:31.588Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:31.644Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:32.276Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:33.224Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:33.244Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:33.272Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:33.322Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:33.348Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:33.372Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:33.394Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:33.675Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:34.030Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:36.978Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:37.363Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:37.373Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:37.386Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:37.410Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:37.420Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:37.430Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:37.445Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:37.756Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:38.100Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:40.521Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:40.909Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:40.927Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:40.941Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:40.954Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:40.965Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:40.978Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:40.991Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:41.317Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:41.685Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:53.905Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:53.920Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:54.268Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:55.635Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.027Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.038Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.048Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.062Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.074Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.086Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.099Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.421Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:56.770Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:57.927Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:58.310Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:58.330Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:58.353Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:58.369Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:58.387Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:58.407Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:58.426Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:58.743Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:16:59.099Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:00.812Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.065Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.467Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.488Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.503Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.579Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.594Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.603Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.641Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:10.849Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:17:11.195Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:28.882Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:28.935Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.069Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.389Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.404Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.503Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.518Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.549Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.582Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.675Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.849Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:30.945Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.264Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.578Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.588Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.595Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.686Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.695Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.709Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.739Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:33.861Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:34.140Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.156Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.489Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.497Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.506Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.600Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.608Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.618Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.627Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:36.767Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:37.042Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:38.191Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:41.858Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:43.869Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:43.888Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:43.899Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:43.910Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:43.923Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:43.935Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:44.171Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:46.890Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:46.904Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:49.299Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:53.146Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:18:53.168Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:31.098Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:31.158Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:31.680Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:32.516Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:32.539Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:32.567Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:32.622Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:32.646Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:32.665Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:32.685Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:32.856Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:33.135Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:35.838Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.155Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.164Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.210Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.253Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.262Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.274Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.303Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.433Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:36.715Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:38.871Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.191Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.199Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.206Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.299Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.307Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.316Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.325Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.471Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:39.758Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:41.643Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:44.847Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:44.876Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:19:47.685Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:27.464Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:27.484Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.091Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.449Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.468Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.485Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.559Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.576Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.593Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.621Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:29.785Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:30.068Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:35.366Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:20:35.384Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:04.697Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:04.722Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:19.160Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:19.217Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.272Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.601Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.617Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.635Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.706Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.719Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.735Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.770Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:20.903Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:21.180Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:23.460Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:23.795Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:23.805Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:23.813Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:23.900Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:23.912Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:23.925Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:24.009Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:24.078Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:24.349Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:28.929Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:21:28.939Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:22:30.488Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:22:30.503Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:22:41.298Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:22:41.329Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:26:13.790Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:26:13.808Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. +[2026-04-25T05:26:25.814Z] error: Host validation failed for: www.yaobai.org. Hint: Set the HOMEPAGE_ALLOWED_HOSTS environment variable to allow requests from this host / port. diff --git a/config/proxmox.yaml b/config/proxmox.yaml new file mode 100644 index 0000000..90aacd7 --- /dev/null +++ b/config/proxmox.yaml @@ -0,0 +1,5 @@ +--- +# pve: +# url: https://proxmox.host.or.ip:8006 +# token: username@pam!Token ID +# secret: secret diff --git a/config/services.yaml b/config/services.yaml new file mode 100644 index 0000000..42756ef --- /dev/null +++ b/config/services.yaml @@ -0,0 +1,71 @@ +- 财务共享: + + - 内部AI: + href: https://ai.yaobai.org + icon: "mdi-robot" + description: "AI 助手" + + - 用户注册: + icon: mdi-account-plus + href: https://link.140103.xyz/register + description: 新增用户注册,限内部 + + + - seafile: + icon: seafile.png + href: https://ftp.140103.xyz + description: 存放当年完整报表等 + + - filebrowser: + icon: filebrowser.png + href: https://files.yaobai.org + description: 空间大,存放历史数据 + - upload: + href: "https://upload.140103.xyz" + icon: "mdi-upload-box" + description: "每月上传完整报表" +- 知识与交流: + - Wiki 知识库: + icon: wikijs.png + href: https://wiki.yaobai.org # 请根据你的实际 Wiki 域名修改 + description: 记录学习笔记和百科知识 + - 交流论坛: + icon: nodebb.png + href: https://forum.yaobai.org # 对应你的 NodeBB 域名 + description: 内部讨论与朋友圈 + - 调查问卷: + icon: formbricks.png + href: https://form.140103.xyz + description: 调查问卷收集信息 + - 实时共享笔记: + icon: etherpad.png + href: https://pad.140103.xyz + description: 实时共享笔记,无密码 + - 待办事项: + icon: vikunja.png + href: https://todo.140103.xyz + description: 待办事项管理 + +- 管理工具: + - ERP 管理系统: + icon: mdi-office-building # 确保这里不带 .png,直接写名字 + href: https://erp.140103.xyz # 请根据你的实际 ERP 域名修改 + description: 资产与任务管理系统 + + - 简易财务系统: + icon: mdi-finance # 确保这里不带 .png,直接写名字 + href: https://manage.140103.xyz # 请根据你的实际 ERP 域名修改 + description: 简易财务系统 + + - 报表平台V4: + icon: mdi-office-building # 确保这里不带 .png,直接写名字 + href: https://report.yaobai.org/xbsn/ # 请根据你的实际 ERP 域名修改 + description: 报表平台V4 + - 报表平台V5: + icon: mdi-microsoft-excel # 确保这里不带 .png,直接写名字 + href: https://report.yaobai.org # 请根据你的实际 ERP 域名修改 + description: 报表平台V5 + - WIKI平台: + icon: mdi-office-building # 确保这里不带 .png,直接写名字 + href: http://63.35.242.213:4000/ # 请根据你的实际 ERP 域名修改 + description: WIKI平台<已淘汰> diff --git a/config/settings.yaml b/config/settings.yaml new file mode 100644 index 0000000..5840f6c --- /dev/null +++ b/config/settings.yaml @@ -0,0 +1,25 @@ +--- +# For configuration options and examples, please see: +# https://gethomepage.dev/configs/settings/ + +providers: + openweathermap: openweathermapapikey + weatherapi: weatherapiapikey +allowIframe: true +allowedHosts: www.yaobai.org +title: YBIH 业务管理中心 +headerStyle: boxed # 盒子样式,更正式 +theme: dark # 商务推荐深色,更有科技感 +layout: + - 核心业务: + style: columns + columns: 3 + - 知识管理: + style: rows + columns: 2 + +# 选用一个稳重的深蓝色或商务风格壁纸 +background: https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000 +backgroundOpacity: 0.8 +backgroundBrightness: 0.5 +customJS: custom.js diff --git a/config/widgets.yaml b/config/widgets.yaml new file mode 100644 index 0000000..caa42d0 --- /dev/null +++ b/config/widgets.yaml @@ -0,0 +1,15 @@ +--- +# For configuration options and examples, please see: +# https://gethomepage.dev/configs/info-widgets/ +- greeting: + text: YAOBAI INTERNATIONAL HOLDING LIMITED + help: true + +- datetime: + format: + dateStyle: long + timeStyle: short + locale: zh-CN +- search: + provider: google + target: _blank diff --git a/i18n b/i18n new file mode 160000 index 0000000..6a3bb54 --- /dev/null +++ b/i18n @@ -0,0 +1 @@ +Subproject commit 6a3bb544e9d81541c923458363391f57c585e973