Перенаправить HTTP на HTTPS на Apache - PullRequest
0 голосов
/ 25 сентября 2019

Я построил приложение для угловых 6 и узла js.Я недавно установил SSL-сертификат на свое приложение, и всякий раз, когда я пытался войти в свое приложение с помощью URL mydomain.com, он перенаправлял меня на http вместо https?

Что я могу сделать, чтобы автоматически перенаправлять мой URL-адрес в https?Я добавил строку Redirect в свой код apache, но у меня что-то не работает?

<IfModule mod_ssl.c>
    <VirtualHost *:443>
# ServerAdmin webmaster@localhost
ServerName careem
ServerAlias myexample.com
Redirect / https://myexample.com
DocumentRoot /root/checkexperts-wep-dev/
<Directory /root/checkexperts-wep-dev/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
   ProxyPass        / http://my ip address
   ProxyPassReverse / http://myexample.com
   ProxyRequests Off
   AllowEncodedSlashes On

   # Local reverse proxy authorization override
   <Proxy http:/myipaddress/*>
      Order deny,allow
Allow from all
</Proxy>
...