feat(tunnels): add Service type with dynamic env.php endpoint discovery
CI / php (push) Successful in 2m53s

- Add EnvServicePortResolver (DeploymentConfig) for MySQL, Redis frontends,
  session Redis, AMQP, http_cache_hosts, optional search
- Extend tunnel registry with tunnel_type, service_key, service metadata;
  provisionServiceTunnel without store/NGINX map; teardown guards
- Admin: Type (Website|Service), service dropdown, list Type column; JS toggle
- TunnelManager/start-server: forward to resolved host:port
- Tests: EnvServicePortResolver + service teardown; test stubs for Magento/PSR
- docs: admin-ui Type/Service and security notes
This commit is contained in:
2026-03-21 04:38:37 -05:00
parent 46b30d5781
commit 960db9801c
22 changed files with 970 additions and 38 deletions
@@ -9,4 +9,6 @@ use Magento\Store\Api\Data\StoreInterface;
interface StoreRepositoryInterface
{
public function get(string $code): StoreInterface;
public function clean(): void;
}