# Synapse Identity Store Synapse's Database itself can be used as an Identity store. ## Features | Name | Supported? | |----------------|------------| | Authentication | No | | Directory | Yes | | Identity | Yes | | Profile | Yes | Authentication is done by Synapse itself. ## Configuration ### Basic ```yaml synapseSql: enabled: ``` Enable/disable the identity store --- ```yaml synapseSql: type: ``` Set the SQL backend to use which is configured in synapse: - `sqlite` - `postgresql` ### SQLite ```yaml synapseSql: connection: ``` Set the value to the absolute path to the Synapse SQLite DB file. Example: `/path/to/synapse/sqliteFile.db` ### PostgreSQL ```yaml synapseSql: connection: //