mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
b0b3d61954
* [DOCS] Adjust yaml snippets * use two spaces * use yaml syntax highlighting * other misc uniformity changes * fix misc grammar * add responsible disclosure link Co-Authored-By: Amir Zarrinkafsh <nightah@me.com>
24 lines
524 B
Markdown
24 lines
524 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
|
|
```
|