mirror of
https://github.com/myronblair/novacpx
synced 2026-07-28 13:14:33 -05:00
Nginx proxy: local mode — Apache port migration, one-click enable/disable
- VhostManager: getApachePort() reads proxy_apache_port setting (default 80); writeApache() uses configured port; migrateApachePort() rewrites all vhosts and ports.conf; restoreApachePort() reverses the migration - ProxyManager::switchToLocalMode() — generator: installs nginx if needed, migrates Apache to 8090, configs nginx catch-all, starts nginx, syncs proxy hosts; rolls back Apache on nginx config failure - ProxyManager::disableLocalMode() — stops nginx, restores Apache to 80/443 - proxy.php: POST /api/proxy/switch-local and /api/proxy/disable-local (SSE stream) - admin.js: two-card "not configured" layout (Local Mode / Remote VM); proxySwitchLocal() modal with port picker + live progress stream; proxyDisableLocal() reverts with progress; 'Disable Local Mode' in service controls when mode=local Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -117,10 +117,61 @@ class VhostManager {
|
||||
@symlink($conf, "/etc/nginx/sites-enabled/novacpx-{$username}.conf");
|
||||
}
|
||||
|
||||
// Returns the port Apache listens on for customer vhosts.
|
||||
// 80 normally; changes to an internal port (e.g. 8090) in local proxy mode.
|
||||
public static function getApachePort(): int {
|
||||
$db = DB::getInstance();
|
||||
return (int)($db->fetchOne("SELECT value FROM settings WHERE `key`='proxy_apache_port'")['value'] ?? 80);
|
||||
}
|
||||
|
||||
// Re-write all existing novacpx-*.conf vhosts to use $to instead of $from,
|
||||
// and update /etc/apache2/ports.conf accordingly. Returns count of files changed.
|
||||
public static function migrateApachePort(int $from, int $to): int {
|
||||
$count = 0;
|
||||
foreach (glob('/etc/apache2/sites-available/novacpx-*.conf') ?: [] as $f) {
|
||||
$orig = file_get_contents($f);
|
||||
$updated = str_replace(
|
||||
["<VirtualHost *:{$from}>", "VirtualHost *:{$from}"],
|
||||
["<VirtualHost *:{$to}>", "VirtualHost *:{$to}"],
|
||||
$orig
|
||||
);
|
||||
if ($updated !== $orig) { file_put_contents($f, $updated); $count++; }
|
||||
}
|
||||
// Update ports.conf: swap Listen $from → Listen $to, drop Listen 443 (nginx handles SSL)
|
||||
$ports = file_get_contents('/etc/apache2/ports.conf') ?: '';
|
||||
$ports = preg_replace('/^Listen\s+' . $from . '\b/m', "Listen {$to}", $ports);
|
||||
$ports = preg_replace('/^Listen\s+443\b/m', '', $ports);
|
||||
$ports = preg_replace('/<IfModule ssl_module>.*?<\/IfModule>/s', '', $ports);
|
||||
file_put_contents('/etc/apache2/ports.conf', $ports);
|
||||
return $count;
|
||||
}
|
||||
|
||||
// Reverse migration: move Apache back from proxy port to standard 80/443.
|
||||
public static function restoreApachePort(int $from, int $to = 80): int {
|
||||
$count = 0;
|
||||
foreach (glob('/etc/apache2/sites-available/novacpx-*.conf') ?: [] as $f) {
|
||||
$orig = file_get_contents($f);
|
||||
$updated = str_replace(
|
||||
["<VirtualHost *:{$from}>", "VirtualHost *:{$from}"],
|
||||
["<VirtualHost *:{$to}>", "VirtualHost *:{$to}"],
|
||||
$orig
|
||||
);
|
||||
if ($updated !== $orig) { file_put_contents($f, $updated); $count++; }
|
||||
}
|
||||
$ports = file_get_contents('/etc/apache2/ports.conf') ?: '';
|
||||
$ports = preg_replace('/^Listen\s+' . $from . '\b/m', "Listen {$to}", $ports);
|
||||
if (!str_contains($ports, 'Listen 443')) {
|
||||
$ports .= "\n<IfModule ssl_module>\n Listen 443\n</IfModule>\n";
|
||||
}
|
||||
file_put_contents('/etc/apache2/ports.conf', $ports);
|
||||
return $count;
|
||||
}
|
||||
|
||||
private static function writeApache(string $username, string $domain, string $docRoot, string $phpVer, string $logDir): void {
|
||||
$port = self::getApachePort();
|
||||
$sock = "/run/php/php{$phpVer}-fpm-{$username}.sock";
|
||||
$conf = "/etc/apache2/sites-available/novacpx-{$username}.conf";
|
||||
file_put_contents($conf, "<VirtualHost *:80>
|
||||
file_put_contents($conf, "<VirtualHost *:{$port}>
|
||||
ServerName {$domain}
|
||||
ServerAlias www.{$domain}
|
||||
DocumentRoot {$docRoot}
|
||||
|
||||
Reference in New Issue
Block a user