authelia/docs/configuration/storage/sqlite.md
Amir Zarrinkafsh 0dea0fc82e
[FEATURE] Support MySQL as a storage backend. (#678)
* [FEATURE] Support MySQL as a storage backend.

Fixes #512.

* Fix integration tests and include MySQL in docs.
2020-03-05 10:25:52 +11:00

24 lines
530 B
Markdown

---
layout: default
title: SQLite
parent: Storage backends
grand_parent: Configuration
nav_order: 4
---
# SQLite
If you don't have a SQL server, you can use [SQLite](https://en.wikipedia.org/wiki/SQLite).
However please note that this setup will prevent you from running multiple
instances of Authelia since the database will be a local file.
## Configuration
Just give the path to the sqlite database. It will be created if the file does not exist.
```yaml
storage:
local:
path: /var/lib/authelia/db.sqlite3
```