Change windows client from HTTP to HTTPS

My server has change to strictly HTTPS and I have some clients that are configured to run HTTP.

I’ve looked in the config file and I believe there are more than one line that needs to be changed here.

Is there some documentation how I can do this?

If you redirect to https, the client should follow and you don’t need to intervene on the client (or it was said to be implemented).

Hello, I had the same error and just change:
http://miserver/nextcloud/

remove last “/”

http://miserver/nextcloud

and in the configuration file:
/etc/httpd/conf.d/nextcloud.conf

Alias /nextcloud "/var/www/html/nextcloud/

<Directory “/var/www/html/nextcloud/”>
Options Indexes FollowSymlinks
AllowOverride All
Require all granted
</Directory>