Skip to content
Snippets Groups Projects
Commit 2fb1a8fc authored by Rehab Hassanein's avatar Rehab Hassanein
Browse files

Instructions for non-packaged UNIX sockets

parent 2f3d916b
No related branches found
No related tags found
No related merge requests found
......@@ -496,6 +496,32 @@
1. [Seed the database](#seed-the-database-fresh-installs-only).
### UNIX socket configuration for non-packaged PostgreSQL
If you want to use your system's PostgreSQL server (installed on the same machine as GitLab)
instead of the one bundled with GitLab, you can do so by using a UNIX socket:
1. Edit `/etc/gitlab/gitlab.rb`:
```ruby
# Disable the built-in Postgres
postgresql['enable'] = false
# Fill in the connection details for database.yml
gitlab_rails['db_adapter'] = 'postgresql'
gitlab_rails['db_encoding'] = 'utf8'
# The path where the socket lives
gitlab_rails['db_host'] = '/var/run/postgresql/'
```
NOTE: **Note:** `gitlab_rails['db_socket']` is a setting for Mysql and it won't have any effect on PostgreSQL.
1. Reconfigure GitLab for the changes to take effect:
```ruby
sudo gitlab-ctl-reconfigure
```
### Configuring SSL
#### Require SSL
......
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