Nextcloudをリバースプロキシ経由で起動している場合、iOSなどのNextcloudアプリでログインできない場合がある。その場合はhttpsに関する設定が抜けている場合があるので、’overwriteprotocol’ => ‘https’,を設定に追加する必要がある。
$ ~/nc/data$ sudo vi config/config.php
<?php
$CONFIG = array (
'htaccess.RewriteBase' => '/',
.
.
.
.
'overwriteprotocol' => 'https',
);
“Nextcloudアプリでログインできない時の設定” に1件のコメント