-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env_example
91 lines (63 loc) · 3.22 KB
/
.env_example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
###############################################################################
# Authentik Configuration #
###############################################################################
# Port on which Authentik server will listen
AUTHENTIK_PORT=9000
# Port on which Authentik server will listen for HTTPS traffic
AUTHENTIK_PORT_HTTPS=9443
# Hostname for the Authentik service in the Docker network
AUTHENTIK_HOST=localhost
# Docker image repository for Authentik server
AUTHENTIK_IMAGE=ghcr.io/goauthentik/server
# Specific version tag of Authentik to use
AUTHENTIK_TAG=2024.10.4
# Email for the admin user
AUTHENTIK_BOOTSTRAP_EMAIL=admin@localhost
# Secret key for JWT token generation (can be generated with `openssl rand -base64 60 | tr -d '\n'`)
AUTHENTIK_SECRET_KEY=
# Password for the admin user (can be generated with `openssl rand -base64 16`)
AUTHENTIK_ADMIN_PASSWORD=
# API token for the admin user (can be generated with `openssl rand -hex 32`)
AUTHENTIK_ADMIN_TOKEN=
# Client ID for the backend service (will be filled during authentik setup via authentik API)
AUTHENTIK_CLIENT_ID=your_client_id
# Client secret for the backend service (will be filled during authentik setup via authentik API)
AUTHENTIK_CLIENT_SECRET=your_client_secret
# PostgreSQL user
PG_USER=authentik
# PostgreSQL database name
PG_DB=authentik
# Password for PostgreSQL database used by Authentik (can be generated with `openssl rand -base64 36 | tr -d '\n'`)
PG_PASS=
###############################################################################
# JWT Configuration #
###############################################################################
# Expiration time for access tokens in minutes
ACCESS_TOKEN_EXPIRE_MINUTES=30
# Secret key for JWT token generation (can be generated with `openssl rand -base64 36 | tr -d '\n'`)
SECRET_KEY=
###############################################################################
# Backend Service Configuration #
###############################################################################
# Port on which the FastAPI backend service will listen
BACKEND_PORT=8000
# Hostname for the backend service in the Docker network
BACKEND_HOST=localhost
# SQLite database connection string for the application
DATABASE_URL=sqlite:///./app/database/mycelium.db
###############################################################################
# Frontend Service Configuration #
###############################################################################
# Port on which the Vue.js frontend will be served
FRONTEND_PORT=8080
# Hostname for the frontend service in the Docker network
FRONTEND_HOST=localhost
# Logging level for Nginx reverse proxy (debug, info, notice, warn, error, crit)
NGINX_LOG_LEVEL=error
###############################################################################
# Docker Configuration #
###############################################################################
# Docker Hub username
DOCKER_USERNAME=victorgoubet
# Docker image tag
IMAGE_TAG=latest