Hello, and happy new year
Just wanted to share with you the code that I used in the main JSP file of my site
to solve this issue
<%
if(request.getScheme().equals("http")){
String redirect = "
https://mydomain.dspace/index.jsp";
response.sendRedirect(redirect);
}
%>