Skip to content
Discussion options

You must be logged in to vote
  1. Yes, that's exactly the cause. Word to PDF uses LibreOffice compiled to WebAssembly, which depends on SharedArrayBuffer for its worker threads. Without SharedArrayBuffer, the LibreOffice worker never finishes initialising and you get the "WASM initialization timeout" you're seeing. Other tools (PDF merge, split, compress, OCR) don't depend on SharedArrayBuffer, which is why they keep working over plain LAN HTTP.

  2. Also Yes for now, the Docker image only ships plain HTTP nginx, so HTTPS termination is on the operator. The fastest path on Ubuntu is to put Caddy in front:

sudo apt install caddy

Caddyfile :


bentopdf.local {
    tls internal
    reverse_proxy localhost:8080
}

Add bento…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@he-pennypacker
Comment options

Answer selected by he-pennypacker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants