From d03f73cb8387ecaf725a1ccc2517617f061588bc Mon Sep 17 00:00:00 2001 From: CyberMind-FR Date: Sun, 25 Jan 2026 06:45:10 +0100 Subject: [PATCH] fix(hexojs): Disable static publishing, serve via container only HexoJS now serves dynamically on :4000 via HAProxy vhost routing. - Disabled auto_publish in metabolizer - Disabled portal in hexojs - /www stays free for SecuBox portal and other apps Co-Authored-By: Claude Opus 4.5 --- package/secubox/secubox-app-hexojs/files/etc/config/hexojs | 2 +- .../secubox-app-metabolizer/files/etc/config/metabolizer | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/secubox/secubox-app-hexojs/files/etc/config/hexojs b/package/secubox/secubox-app-hexojs/files/etc/config/hexojs index a29cf8fa..e392d57e 100644 --- a/package/secubox/secubox-app-hexojs/files/etc/config/hexojs +++ b/package/secubox/secubox-app-hexojs/files/etc/config/hexojs @@ -40,5 +40,5 @@ config theme_config 'theme' option logo_text 'Blog_' config portal 'portal' - option enabled '1' + option enabled '0' option path '/www' diff --git a/package/secubox/secubox-app-metabolizer/files/etc/config/metabolizer b/package/secubox/secubox-app-metabolizer/files/etc/config/metabolizer index 99ee324d..9c003dad 100644 --- a/package/secubox/secubox-app-metabolizer/files/etc/config/metabolizer +++ b/package/secubox/secubox-app-metabolizer/files/etc/config/metabolizer @@ -19,7 +19,7 @@ config hexo 'hexo' option source_path '/srv/hexojs/site/source/_posts' option public_path '/srv/hexojs/site/public' option portal_path '/www' - option auto_publish '1' + option auto_publish '0' config portal 'portal' option enabled '1'