We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7d2950d + 31c9601 commit 9b0730cCopy full SHA for 9b0730c
src/Deployer/Task/PlatformConfiguration/NginxTask.php
@@ -37,13 +37,14 @@ public function configureWithTaskConfig(TaskConfigurationInterface $config): ?Ta
37
38
task('deploy:nginx', [
39
'deploy:nginx:prepare',
40
- 'deploy:nginx:manage_vhost',
41
'deploy:nginx:upload',
42
'deploy:nginx:sync',
43
'deploy:nginx:cleanup',
44
]);
45
46
before('deploy:symlink', 'deploy:nginx');
+ after('deploy:symlink', 'deploy:nginx:manage_vhost');
47
+
48
foreach ($this->getRegisteredTasks() as $taskName) {
49
after('deploy:nginx:prepare', $taskName);
50
}
0 commit comments