hi, i'm having trouble setting up SSL in dspace 9.1
i have the following configurations
after doing everything when i try to access it via domain, it does not open
i have this configuration in apache virtualhost file
<VirtualHost *:443>
ServerName
mydomain.ac.in ProxyPreserveHost On
RequestHeader set X-Forwarded-Proto https
SSLEngine on
SSLCertificateFile /etc/ssl/certificate.crt
SSLCertificateKeyFile /etc/ssl/certificate.key
# Proxy for Angular UI
ProxyPreserveHost On
ProxyPass /
http://localhost:4000/ ProxyPassReverse /
http://localhost:4000/ # Proxy for REST API (DSpace backend)
ProxyPass /server
http://localhost:8080/server ProxyPassReverse /server
http://localhost:8080/server ErrorLog ${APACHE_LOG_DIR}/dspace_error.log
CustomLog ${APACHE_LOG_DIR}/dspace_access.log combined
</VirtualHost>
this is in local.cfg
and this is in config.prod.yml
ui:
ssl: false
host: localhost
port: 4000