I have https on the Apache configuration of my website.conf as set up
SetEnvIf permission "(. *)" HTTP_AUTHORIZATION = $ 1
ServerName website.com
ServerAlias site
SSLEngine on
SSLCertificateKeyFile /etc/certs/website.key
SSLCertificateFile /etc/certs/website.crt
SSLCertificateChainFile /etc/certs/website.bundle
and the ports hosted on top of 5061 are REST API services. I want everyone who tries to reach the server name via http to be redirected to https without the port change.
Is that possible ?