fix: php reload
All checks were successful
Self Test / test (push) Successful in 13s

This commit is contained in:
Dominik Polakovics Polakovics 2026-02-02 21:31:57 +01:00
parent 85841ba154
commit cb4939bd85

View file

@ -142,9 +142,14 @@ set('release_or_current_path', function () {
// PHP-FPM Reload (for NixOS infrastructure) // PHP-FPM Reload (for NixOS infrastructure)
// ============================================================================= // =============================================================================
task('php:reload', function () { // needed for t3o infrastructure
task('php:reload', function() {
run('php-reload'); run('php-reload');
})->desc('Reload PHP-FPM'); })->select('stage=contentmaster');
task('php:reload-prod', function() {
run('php-reload');
})->select('stage=production');
// ============================================================================= // =============================================================================
// Deployment Strategies // Deployment Strategies