From ed22d640f4c3b735739ba33432a9bbe1bed5ffbc Mon Sep 17 00:00:00 2001 From: marc tobias Date: Fri, 31 Jul 2020 16:52:29 +0200 Subject: [PATCH] VAGRANT.md: we use different database DSN syntax these days --- VAGRANT.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VAGRANT.md b/VAGRANT.md index 4c8eb724..b10a5ac7 100644 --- a/VAGRANT.md +++ b/VAGRANT.md @@ -160,9 +160,9 @@ You can configure/download other Vagrant boxes from [https://app.vagrantup.com/b Let's say you have a Postgres database named `nominatim_it` on server `your-server.com` and port `5432`. The Postgres username is `postgres`. You can edit `settings/local.php` and point Nominatim to it. - pgsql://postgres@your-server.com:5432/nominatim_it + pgsql:host=your-server.com;port=5432;user=postgres;dbname=nominatim_it -No data import necessary or restarting necessary. +No data import or restarting necessary. If the Postgres installation is behind a firewall, you can try -- 2.39.5