Skip to main content

XBackbone

---
version: "3.3"
services:
  xbackbone:
    image: lscr.io/linuxserver/xbackbone
    container_name: xbackbone
    environment:
      - PUID=998
      - PGID=100
      - TZ=Europe/Paris
    volumes:
      - /srv/path/Files/XBackbone:/config
    ports:
      - 99:80
      - 4434:443
    restart: unless-stopped

"If you want to change the PHP max upload size you can override the php.ini file by adding options in /config/php/php-local.ini"

Ajouter les lignes:

upload_max_filesize = 100G

post_max_size = 100G

 

For reverse proxying, remember to change the base_url in /config/www/xbackbone/config.php to your domain if you initially set up the application with a local url. 

'base_url' => 'https://my.domain.com',