Theme in Multiple Domains

I’ve setup a custom theme through under Admin settings using example.com. When I navigate to cloud.example.com I can see the new theme. When I navigate to cloud.example2.com I don’t see the theme - only the new colors but no logo or background picture.

When I sign into Admin through example2.com and change the theme I can’t see the background or logo when I navigate to example.com.

How can I get the logo and background to display on both cloud.example.com AND cloud.example2.com?

Nextcloud version:12
Operating system and version: Ubuntu 16.04
Apache version: 2.4.18
PHP version: 7.0.18

config.php

<?php $CONFIG = array ( 'instanceid' => 'xxxxx', 'passwordsalt' => 'xxxxx', 'secret' => 'xxxxxx', 'trusted_domains' => array ( 0 => 'cloud.example.com', 1 => 'cloud.example2.me', ), 'datadirectory' => '/cloud/mount', 'overwrite.cli.url' => 'https://cloud.example.com/nextcloud', 'dbtype' => 'mysql', 'version' => '12.0.0.29', 'dbname' => 'nextcloud', 'dbhost' => 'localhost:5432', 'dbport' => '', 'dbtableprefix' => 'oc_', 'dbuser' => 'nextcloud', 'dbpassword' => 'xxxxx', 'installed' => true, 'memcache.local' => '\\OC\\Memcache\\APCu', 'memcache.locking' => '\\OC\\Memcache\\Redis', 'filelocking.enabled' => 'true', 'redis' => array ( 'host' => '/var/run/redis/redis.sock', 'port' => 0, 'timeout' => 0.0, 'htaccess.RewriteBase' => '/', ), 'maintenance' => false, 'mail_smtpmode' => 'php', 'mail_smtpauthtype' => 'LOGIN', 'mail_from_address' => 'webmaster', 'mail_domain' => 'example.com', );
1 Like