feat(outline): release outline

deployment notes:
- compare to Affine (Affine is heavy and their whtieboard and canvas is not used enough)
- don't restart this when it initiates, redis lock causes failure
This commit is contained in:
2026-05-16 19:14:26 +09:00
parent f28661e664
commit 1256122081
12 changed files with 364 additions and 2 deletions
+52
View File
@@ -0,0 +1,52 @@
# Outline
## Prerequisite
### Create database
- Create the password with `openssl rand -base64 32`
- Save this value in secrets.yaml in `postgresql.password.outline`
- Access infra server to create outline_db with `podman exec -it postgresql psql -U postgres`
```SQL
CREATE USER outline WITH PASSWORD 'postgresql.password.outline';
CREATE DATABASE outline_db;
ALTER DATABASE outline_db OWNER TO outline;
```
### Create oidc secret and hash
- Create the secret with `openssl rand -base64 32`
- access to auth vm
- `podman exec -it authelia sh`
- `authelia crypto hash generate pbkdf2 --password 'outline.oidc.secret'`
- Save this value in secrets.yaml in `outline.oidc.secret` and `outline.oidc.hash`
### Create session secret and utils value
- Create two secrets with `openssl rand -hex 32`
- Save this value in secrets.yaml in `outline.session_secret`
- Save this value in secrets.yaml in `outline.utils_secret`
### Add postgresql dump backup list
- [set_postgresql.yaml](../../../ansible/roles/infra/tasks/services/set_postgresql.yaml)
```yaml
- name: Set connected services list
ansible.builtin.set_fact:
connected_services:
- ...
- "outline"
```
## Configuration
### Notice
- Outline is a BSL, not fully open-sourced stack. Always ensure they can change their policy of the outline
### Access to outline
- https://outline.ilnmors.com
- Authelia redirect and automatically sign-up
+2
View File
@@ -126,6 +126,8 @@
- Link to Nextcloud
- [x] sure
- budget and finance
- [x] outline
- Compare to affine, the whiteboard and canvas functions are not useful enough
- [ ] memos
- WriteFreely or directus + frontend(Astro)
- MediaCMS or PeerTube