The reason I have port 3000 is because I am running a react project which does some server side rendering which helps with my SEO.
Also, I feel like it worked like that at one point, but for some reason mine looks like this...
My override looks like this...
Also, I feel like it worked like that at one point, but for some reason mine looks like this...
Code:
# DOMAIN: example.com
# PORT FORWARD FROM 80 TO: 443
<virtualhost *:443>
ServerName example.com
ServerAlias www.example.com
ServerAdmin zadmin@localhost
RewriteEngine on
ReWriteCond %{SERVER_PORT} !^443$
RewriteRule ^/(.*) https://%{HTTP_HOST}/$1 [NC,R,L]
</virtualhost>
# END DOMAIN: example.com
My override looks like this...