Connection Configuration
Example Configuration
Setup Requirements
1
Create a dedicated database user
Create a user with only
CREATE TABLE, INSERT, and UPDATE permissions
on the target schema. Never use a superuser account. sql CREATE USER jobo_feed WITH PASSWORD 'your_secure_password'; GRANT CONNECT ON DATABASE jobs_db TO jobo_feed; GRANT USAGE, CREATE ON SCHEMA public TO jobo_feed; GRANT INSERT, UPDATE ON ALL TABLES IN SCHEMA public TO jobo_feed; ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT INSERT, UPDATE ON TABLES TO jobo_feed; 2
Allow network access
Ensure your server allows connections from Jobo’s IP addresses. Contact
support for the current IP range to whitelist.
3
Enable SSL
Use
ssl_mode: require or higher for production environments. This ensures
all data in transit is encrypted.
