Closed
Description
Is there an existing issue for this?
- I have searched the existing issues
Current Behavior
On backup with xz compression method. I get an error popup
Expected Behavior
backup work
Steps To Reproduce
Destination: OneDrive v2
without encryption
Environment
- OS: Ubuntu 24.04
- How docker service was installed: docker-ce via apt
behind nginx proxy with this config
server {
listen 443 ssl;
server_name duplicati.exemple.com;
ssl_certificate /etc/letsencrypt/live/duplicati.exemple.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/duplicati.exemple.com/privkey.pem;
ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
add_header Strict-Transport-Security "max-age=31536000; includeSubdomains";
location / {
proxy_set_header Upgrade $http_upgrade; # Added for WebSocket
proxy_set_header Connection "Upgrade"; # Modified for WebSocket
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass http://duplicati:8200/;
}
}
CPU architecture
x86-64
Docker creation
services:
duplicati:
image: lscr.io/linuxserver/duplicati:latest
container_name: duplicati
environment:
- TZ=Europe/Brussels
- SETTINGS_ENCRYPTION_KEY=a_64_character_[a-z,A-Z,0-9]_key
- CLI_ARGS= #optional
- DUPLICATI__WEBSERVICE_PASSWORD=password
volumes:
- ./:/config
- ./backups:/backups
- /srv/cloud:/source/cloud:ro
- /app/couchdb/backups:/source/couchdb-backups:ro
#ports:
# - 8200:8200
networks:
- nginx_nginx
restart: always
networks:
nginx_nginx:
external: true
Container logs
GID/UID
───────────────────────────────────────
User UID: 911
User GID: 911
───────────────────────────────────────
Linuxserver.io version: v2.1.0.3_beta_2025-01-22-ls231
Build-date: 2025-01-22T18:01:08+00:00
───────────────────────────────────────
[custom-init] No custom files found, skipping...
Connection to localhost (::1) 8200 port [tcp/*] succeeded!
[ls.io-init] done.
Server has started and is listening on port 8200
Metadata
Metadata
Assignees
Type
Projects
Status
Done