Octane registers routes once at startup when $_SERVER['HTTP_HOST'] is not available. All Website modules now register routes without domain checks. Pool/Trade/Names subdomain routes disabled (views not built). Home module disabled (Lethean handles homepage). Container now serves 200 on FrankenPHP Octane. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
176 B
PHP
13 lines
176 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Mod\Home;
|
|
|
|
/**
|
|
* Disabled — homepage handled by Website/Lethean module.
|
|
*/
|
|
class Boot
|
|
{
|
|
public static array $listens = [];
|
|
}
|