I am not sure what happened - but just recently all traffic from port 80 is served the default "Apache2 Ubuntu Default Page"
All direct 443 traffic flows properly.
What I want to happen is any traffic that goes to http://example.com be redirected to https://example.com
I feel like I might be missing something tiny, but I just need another set of eyes on it.
Here are the contents of my vhost entry:
Any help would be greatly appreciated.
All direct 443 traffic flows properly.
What I want to happen is any traffic that goes to http://example.com be redirected to https://example.com
I feel like I might be missing something tiny, but I just need another set of eyes on it.
Here are the contents of my vhost entry:
Code:
SSLEngine on
SSLProtocol ALL -SSLv2 -SSLv3
SSLHonorCipherOrder On
SSLCipherSuite ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5:!DSS
SSLCertificateFile /etc/letsencrypt/live/example.com/cert.pem
SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem
SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem
# Keeping bellow for future upgrades.
# Requires Apache >= 2.4
SSLCompression off
#
SetOutputFilter INFLATE;proxy-html;DEFLATE;
ProxyHTMLInterp On
ProxyHTMLExtended On
ProxyHTMLURLMap (.*)0.0.0.0:3000(.*) https://www.example.com$2 [Rin]
ProxyPass / http://0.0.0.0:3000/
ProxyPassReverse / http://0.0.0.0:3000/
Any help would be greatly appreciated.