postgrest.conf 679 B

1234567891011121314151617181920
  1. # postgrest.conf
  2. # The standard connection URI format, documented at
  3. # https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING
  4. db-uri = "postgres://postgres:4ud1t0rf4lt4$$@localhost:5432/paad_pruebas"
  5. # The database role to use when no client authentication is provided.
  6. # Should differ from authenticator
  7. db-anon-role = "postgres"
  8. # The secret to verify the JWT for authenticated requests with.
  9. # Needs to be 32 characters minimum.
  10. jwt-secret = "reallyreallyreallyreallyverysafe"
  11. jwt-secret-is-base64 = false
  12. # Port the postgrest process is listening on for http requests
  13. server-port = 3000
  14. # the location root is /api
  15. server-host = "*"