NCのドメインを変更したい事はそうそうないとは思いますが、config.phpの記述を変更するだけで手軽にドメインを変えることができます。
変更・追記するものは以下の2つです。
・trusted_domains
・override.cli.url
override.cli.urlはfull pathで記述する必要があります。
以下設定例:
$ vim nextcloud/config/config.php
'trusted_domains' =>
array (
0 => 'new.domain.com',
1 => 'www.new.domain.com'
),
'overwrite.cli.url' => 'https://new.domain.com',
これと合わせてnginxやapacheなどの設定も忘れずに変更しておきましょう。