Im running Rundeck and Apache on same Windows 2019 server VM, i would like to access Rundeck in https instead http.
I configured this virtual host on Apache and restarted Apache service (i checked errors.log and it's all ok):
<VirtualHost *:443>
ServerName portalecm.europe.adnet
# SSL Configuration
SSLEngine on
SSLCertificateFile "conf/ssl.crt/europe_adnet.crt"
SSLCertificateKeyFile "conf/ssl.key/europe_adnet.key"
# Proxy Configuration
ProxyPreserveHost On
ProxyPass /
http://161.27.160.71:4440/ ProxyPassReverse /
http://161.27.160.71:4440/ # Security Headers (Optional but Recommended)
Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains"
Header always set X-Content-Type-Options "nosniff"
Header always set X-Frame-Options "DENY"
Header always set X-XSS-Protection "1; mode=block"
</VirtualHost>
And on rundeck-config.properties:
server.address=161.27.160.71
server.port=4440
grails.serverURL=
https://portalecm.europe.adnet:4440But if i browse
https://portalecm.europe.adnet:4440 it doesn't work.
Any help appreciated.
Thanks.