# References - https://github.com/nextcloud/docker - https://hub.docker.com/r/linuxserver/nextcloud # 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: ```` # linuxserver image //config/www/nextcloud/config/config.php # official nextcloud image //nextcloud/app/config/ ```` Adjust the PHP file and put in your subdomains as well as trusted proxy IPs. Something like this: ```` array ( 0 => 'nextcloud.example.com', 1 => 'nextcloud.anotherdomain.com', ), 'trusted_proxies' => array ( 0 => ['10.0.0.0/8'], 1 => ['172.16.0.0/12'], 2 => ['192.168.0.0/16'], ), 'maintenance_window_start' => 1, 'dbtype' => 'sqlite3', ... ); ````