Skip to main content
Skip to main content
🚧 Work in Progress

Frequently Asked Questions

One possible cause:
The connection string in Zerops always starts with postgresql://. While the official PostgreSQL documentation states that both postgresql:// and postgres:// URIs are valid, some software requires the shorter postgres:// version.

To resolve this, create your own environment variable with the correct URI. For example, if your PostgreSQL service is named db, use the following format:

postgres://${db_user}:${db_password}@${db_hostname}:${db_port}