Tjerk Woudsma

Results 15 comments of Tjerk Woudsma

Solved (in this case) using https://github.com/heroku/heroku-buildpack-pgbouncer stunnel, this way node-mapnik doesn't need to use SSL to connect to the database. Remove Heroku config var `PGSSLMODE=require` if you've set it before....

It has been a while, but i can remember we did set some config vars for the `pgbouncer` buildpack. ``` PGBOUNCER_POOL_MODE=session PGBOUNCER_URLS=DATABASE_URL ``` I'm not sure that will solve your...

And shouldn't `no pg_hba.conf entry for host "1.1.1.1"` be `127.0.0.1`? You need to connect to the local database port created by `pgbouncer-stunnel`.

The `pgbouncer-stunnel` buildpack makes a connection to the Heroku Postgres addon, and provides a local database endpoint for you, e.g. `postgres://user:[email protected]:6000/db1`. Maybe try to log what that database URL is,...

Thanks @andrewsomething! It would be nice to have a version of your explanation in the official documentation as well, or to be able to use ```bash doctl compute droplet create...

Hi there! Thanks for trying out Swarmlet, and excuse my late reply. Unfortunately it's not possible to install Swarmlet without an internet connection on the host. We're installing quite some...

I'm not sure, most installation stuff is handled by Ansible now, feel free to play around with the playbooks/tasks around this issue. This is where we install some packages using...

YAML files are now being validated in the deployer entrypoint script https://github.com/swarmlet/swarmlet/blob/89c805dff82f40291565636ede6e9cf90307da72/modules/core/deployer/entrypoint#L25-L26