Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
66f0eddb95 adapt stirling-pdf to caddy 2025-03-16 17:46:36 +01:00
128ddaa95f Stirling PDF under Tools 2025-03-16 17:26:47 +01:00
2 changed files with 27 additions and 0 deletions

View file

@ -73,6 +73,11 @@ torrent.{$DOMAIN} http://torrent.{$DOMAIN} {
import errorhandler
}
pdf.{$DOMAIN} http://pdf.{$DOMAIN} {
reverse_proxy stirling-pdf:8080
import errorhandler
}
root-ca.{$DOMAIN} http://root-ca.{$DOMAIN} {
file_server * {
root /usr/share/caddy/web

22
tools/docker-compose.yml Normal file
View file

@ -0,0 +1,22 @@
services:
stirling-pdf:
image: frooodle/s-pdf:latest
# ports:
# - '8080:8080'
networks:
- web
volumes:
- ${VOLUMES_PATH}/tools/stirling-pdf/trainingData:/usr/share/tesseract-ocr/5/tessdata #Required for extra OCR languages
- ${VOLUMES_PATH}/tools/stirling-pdf/extraConfigs:/configs
# - ${VOLUMES_PATH}/tools/stirling-pdf/customFiles:/customFiles/
# - ${VOLUMES_PATH}/tools/stirling-pdf/logs:/logs/
environment:
- DOCKER_ENABLE_SECURITY=false
networks:
paperless:
web:
external: true