update doc

This commit is contained in:
Lukas Kreussel
2025-10-02 18:06:00 +02:00
parent fa6ec04d4c
commit f9c12c784e
3 changed files with 5 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -1485,7 +1485,7 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
[[package]]
name = "jellyswarrm-macros"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"proc-macro2",
"quote",
@@ -1497,7 +1497,7 @@ dependencies = [
[[package]]
name = "jellyswarrm-proxy"
version = "0.1.3"
version = "0.1.4"
dependencies = [
"anyhow",
"askama",

View File

@@ -6,7 +6,7 @@ members = [
resolver = "2"
[workspace.package]
version = "0.1.3"
version = "0.1.4"
edition = "2021"
authors = ["lukaskreussel@gmail.com"]
repository = "https://github.com/LLukas22/Jellyswarrm"

View File

@@ -30,6 +30,8 @@ The table below lists all available configuration options:
| `password` | `jellyswarrm` | `JELLYSWARRM_PASSWORD` | Default admin password (⚠️ change this in production). |
| `session_key` | *Generated 64-byte key* | `JELLYSWARRM_SESSION_KEY` | Base64-encoded session encryption key. |
| `timeout` | `20` | `JELLYSWARRM_TIMEOUT` | Request timeout in seconds. |
| `ui_route` | `ui` | `JELLYSWARRM_UI_ROUTE` | URL path segment for accessing the web UI (e.g., `/ui`). |
| `url_prefix` | *(none)* | `JELLYSWARRM_URL_PREFIX` | Optional URL prefix for all routes (useful for reverse proxy setups). |
---