Ok, so i got this Free SSL setup from lets encrypt. WOndering why it is not giving me a full lock.
in httpd.conf, I have:
<VirtualHost *:80>
ServerAdmin admin@cvp71.com
ServerName chat.cvp71.com
ServerAlias www.chat.cvp71.com
<Location />
Order allow,deny
Allow from all
ProxyPass http://localhost:3000/
ProxyPassReverse http://localhost:3000/
</Location>
</VirtualHost>
ServerName chat.cvp71.com
ServerAlias www.chat.cvp71.com
SSLEngine on
SSLCertificateFile /etc/letsencrypt/live/chat.cvp71.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/chat.cvp71.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/chat.cvp71.com/chain.pem
<Location />
Order allow,deny
Allow from all
ProxyPass http://98.174.201.87:3000/
ProxyPassReverse http://98.174.201.87:3000/
</Location>