Question
How can i make my Droplate miroring be HTTPS?
can any one teach or help me how can i make my Droplets be HTTPS?
im using putty
and this script i using.
<VirtualHost *:80>
ServerName localhost
DocumentRoot /var/www/html/
DirectoryIndex index.php
ProxyPass "/" http://domain.com//
ProxyPassReverse "/" http://domain.com//
ProxyPass "/img" http://domain.com//img/ retry=1 acquire=3000 timeout=3000
ProxyPassReverse "/img" http://domain.com//img/
RewriteEngine on
RewriteRule ^/img/(.*)/(images|javascripts|stylesheets)(.*) http://domain.com//
</VirtualHost>
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×