The homelab is retiring *.schweitz.internal and will rebind most published container ports from 0.0.0.0 to 127.0.0.1 (Phase 4), so host-IP:published-port URLs will stop working for container-to-container traffic. Point the .env.example defaults at docker-dataplane container names and INTERNAL ports instead: wiki:3000, neo4j:7687, searxng:8080 (internal port, not the 8087 host publish), paperless:8000, ollama:11434. All names and ports verified against the running containers. Also correct the AGENTS.md deploy health-check URL, which claimed the service runs on port 8000; it runs on 8089. static/wikijs-integration.js is left unchanged: it already derives the API base from its own script URL (document.currentScript.src, split on /static/) and only uses the hardcoded IP:8089 as a last-resort fallback. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
26 lines
719 B
Bash
26 lines
719 B
Bash
# Service URLs for local dev (pointing to your server)
|
|
TEST_HOST=192.168.86.149
|
|
WIKIJS_URL=http://wiki:3000
|
|
NEO4J_URI=bolt://neo4j:7687
|
|
QDRANT_HOST=192.168.86.149
|
|
QDRANT_PORT=6333
|
|
OLLAMA_URL=http://ollama:11434
|
|
SEARXNG_URL=http://searxng:8080
|
|
REDIS_HOST=192.168.86.149
|
|
PAPERLESS_URL=http://paperless:8000
|
|
|
|
OLLAMA_LLM_MODEL=gemma4:e2b
|
|
OLLAMA_EMBEDDING_MODEL=nomic-embed-text
|
|
|
|
# Wiki.js auth
|
|
WIKIJS_USERNAME=librarian@schweitz.net
|
|
WIKIJS_PASSWORD=key_here
|
|
# Wiki.js GraphQL API token (generate from Admin → API Access)
|
|
WIKI_GRAPHQL_API=your_jwt_token_here
|
|
|
|
LIBRARY_API_KEY=key_here
|
|
NEO4J_PASSWORD=key_here
|
|
WIKIJS_DB_PASSWORD=key_here
|
|
SCHEDULER_API_KEY=key_here
|
|
PAPERLESS_TOKEN=key_here
|
|
SYSTEM_SETTINGS_PASSWORD=key_here |