Hello,
I’m coming back to you for this problem, it’s solved…
My Config in config.php is
’overwritehost’ => ‘app.***.net’,
‘overwriteprotocol’ => ‘https’,
‘overwritewebroot’ => ‘/nextcloud’,
‘overwritecondaddr’ => ‘^192.168.1.3$’,
‘overwrite.cli.url’ => ‘https://app.***.net/nextcloud/’,
192.168.1.3 is IP of my reverse Proxy
192.168.1.5 is IP of my Nextcloud server
Configuration of my Apache Reverse Proxy :
ProxyPass /nextcloud http://192.168.1.5/nextcloud
ProxyPassReverse /nextcloud http://192.168.1.5/nextcloud
ProxyPassReverseCookiePath /nextcloud /nextcloud
The problem is the cookie… When many sites was activated in the reverse proxy, the cookie has a bad url… So the directive ProxyPassReverseCookiePath solved my problem.
Cordially