Skip to content

Commit ba2a7ab

Browse files
authored
fix/link (#2119)
1 parent 3b5e632 commit ba2a7ab

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

guides/hosting/installation-updates/deployments/deployment-with-deployer.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ host('SSH-HOSTNAME')
9393
])
9494
->setRemoteUser('www-data')
9595
->set('deploy_path', '/var/www/shopware') // This is the path, where deployer will create its directory structure
96-
->set('http_user', 'www-data') // Not needed, if the `user` is the same user, the webserver is running with
96+
->set('http_user', 'www-data') // Not needed, if the `user` is the same user, the webserver is running with
9797
->set('writable_mode', 'chmod');
9898
```
9999

@@ -162,7 +162,7 @@ This task is defined in the `deploy:symlink` default job in the [`deploy.php`](d
162162
This is the output of `dep deploy env=prod`:
163163

164164
```text
165-
$ dep deploy env=prod
165+
$ dep deploy env=prod
166166
167167
✔ Executing task deploy:prepare
168168
✔ Executing task deploy:lock
@@ -216,7 +216,7 @@ It will be used in the above-mentioned GitLab CI/CD pipeline or GitHub Actions.
216216

217217
Have a look at the following files. All steps are provided with helpful comments.
218218

219-
The GitHub Action used above is [shopware/github-actions/project-deployer](https://github.com/shopware/github-actions/tree/main/project-deployer), and the GitLab CI component is [shopware/ci-components/project-deployer](https://gitlab.com/shopware/ci-components/project-deployer).
219+
The GitHub Action used above is [shopware/github-actions/project-deployer](https://github.com/shopware/github-actions/tree/main/project-deployer), and the GitLab CI component is [shopware/ci-components/project-deployer](https://gitlab.com/shopware/ci-components/-/blob/main/templates/project-deployer.yml).
220220

221221
### .gitlab-ci.yml
222222

@@ -277,7 +277,7 @@ host('SSH-HOSTNAME')
277277
->set('deploy_path', '/var/www/shopware')
278278
->set('http_user', 'www-data') // Not needed, if the `user` is the same, the webserver is running with
279279
->set('writable_mode', 'chmod')
280-
->set('keep_releases', 3); // Keeps 3 old releases for rollbacks (if no DB migrations were executed)
280+
->set('keep_releases', 3); // Keeps 3 old releases for rollbacks (if no DB migrations were executed)
281281

282282
// These files are shared among all releases.
283283
set('shared_files', [

0 commit comments

Comments
 (0)