Skip to content
Snippets Groups Projects
Commit c536400d authored by Job van der Voort's avatar Job van der Voort
Browse files

small update to docs

parent f51c6525
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -118,10 +118,10 @@ We recommend PostgreSQL but you can also use MySQL
sudo -u gitlab_ci -H editor config/application.yml
# Development
#sudo -u gitlab_ci -H cp config/application.yml.example.development config/application.yml
# Copy reference secrets
# Copy the example secrets file
sudo -u gitlab_ci -H cp config/secrets.yml.example config/secrets.yml
# Edit web server settings
sudo -u gitlab_ci -H cp config/unicorn.rb.example config/unicorn.rb
sudo -u gitlab_ci -H editor config/unicorn.rb
Loading
Loading
@@ -131,8 +131,8 @@ We recommend PostgreSQL but you can also use MySQL
sudo chmod -R u+rwX tmp/sockets/
sudo -u gitlab_ci -H mkdir -p tmp/pids/
sudo chmod -R u+rwX tmp/pids/
# Change permission of directory where build traces are stored
# Change the permissions of the directory where build traces are stored
sudo chmod -R u+rwX builds/
 
# Make sure GitLab CI can write to the builds/ directory
Loading
Loading
@@ -165,9 +165,9 @@ We recommend PostgreSQL but you can also use MySQL
 
### Secure secrets.yml
 
Secrets file stores encryption keys for sessions and secure variables.
Backup `secrets.yml` someplace safe, but don't store them in the same place as your database backups.
Otherwise your secrets are exposed in case one of your backups is compromised.
The `secrets.yml` file stores encryption keys for sessions and secure variables.
Backup `secrets.yml` someplace safe, but don't store it in the same place as your database backups.
Otherwise your secrets are exposed if one of your backups is compromised.
 
## 8. Install Init Script
 
Loading
Loading
Loading
Loading
@@ -30,10 +30,10 @@ sudo chmod -R u+rwX builds
 
### 4. Copy secrets
 
Secrets file is used to store keys to encrypt sessions and encrypt secure variables.
When you run migrations store it someplace safe,
but don't store them in the same place as your database backups.
Otherwise your secrets are exposed in case one of your backups is compromised.
The `secrets.yml` file is used to store keys to encrypt sessions and encrypt secure variables.
When you run migrations make sure to store it someplace safe.
Don't store it in the same place as your database backups,
otherwise your secrets are exposed if one of your backups is compromised.
 
```
sudo -u gitlab_ci -H cp config/secrets.yml.example config/secrets.yml
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment