Applications
The Application Control panel lets you restart PHP-FPM for the app, flush the OPcache, toggle maintenance mode, and run Composer commands — all from the browser.
Before you start
Go to your server → Applications → click the application name → click "Control" in the application menu.
Click "Restart PHP-FPM" to restart only this application's PHP-FPM pool. Use this after changing PHP.ini settings or installing a PHP extension. Unlike a full service restart, it only affects this application.
Click "Flush OPcache" to clear the PHP bytecode cache for this application. Required after deploying code changes if OPcache caches stale files.
Toggle "Maintenance Mode" to show a maintenance page to visitors. The app's actual files are untouched — Nginx serves a static maintenance page instead. Toggle off to restore normal operation.
In the "Composer" section, click "Install Dependencies" or "Update Dependencies" to run `composer install` or `composer update` in the application's root directory. The command output streams in real time.
Tips