Compose-Examples/examples/nextcloud
L4RM4ND ce70d88893 add env 'DOCKER_VOLUME_STORAGE' for volume path customization 2023-02-25 14:09:52 +01:00
..
README.md Update README.md 2023-02-24 23:23:38 +01:00
docker-compose-redis.yml add env 'DOCKER_VOLUME_STORAGE' for volume path customization 2023-02-25 14:09:52 +01:00
docker-compose.yml add env 'DOCKER_VOLUME_STORAGE' for volume path customization 2023-02-25 14:09:52 +01:00

README.md

References

Notes

If you plan on using a reverse proxy, you will have to define your domain or subdomain as trusted proxy domain.

The relevant nextcloud configuration file to define this is located at:

/<your-volume-path>/config/www/nextcloud/config/config.php

Adjust the PHP file and put in your subdomains as trusted. Something like this:

<?php
$CONFIG = array (
  ...
  'trusted_domains' => 
  array (
    0 => 'nextcloud.example.com',
    1 => 'nextcloud.anotherdomain.com',
  ),
  'dbtype' => 'sqlite3',
  ...
);