This guide explains how to deploy PHP code from GitLab to a remote server using SSH via the .gitlab-ci.yml
file.
To enable secure authentication between GitLab and your remote server, you need to generate SSH keys.
If you haven't already, generate an SSH key pair on your local machine using the following command:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
Press Enter
to accept the default file location, then enter a passphrase if desired.
Once you've generated the SSH key, add the private key to your GitLab CI/CD variables:
SSH_PRIVATE_KEY
~/.ssh/id_rsa
).Variable
Copy your SSH public key (~/.ssh/id_rsa.pub
) to the remote server's authorized keys:
ssh-copy-id -i ~/.ssh/id_rsa.pub user@your-server
This will enable GitLab CI to authenticate with the server over SSH.
.gitlab-ci.yml
for DeploymentNow, create the .gitlab-ci.yml
file at the root of your repository to define the CI/CD pipeline for deployment.
Here’s an example of the .gitlab-ci.yml
file:
stages:
- deploy
deploy:
stage: deploy
script:
- echo "Deploying PHP code via SSH"
- mkdir -p ~/.ssh
- echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config
- eval $(ssh-agent -s)
- echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
- ssh user@your-server "cd /path/to/deploy && git pull"
Once you've added the .gitlab-ci.yml
file to your repository, GitLab will automatically detect the file and run the CI/CD pipeline when you push the changes. Check the pipeline logs to ensure that the SSH deployment works correctly.