Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
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.
Accepted Answer
Hello,
As far as I can see what could be causing the issue here are two things:
the fact that in your HTTP Vhost you have DocumentRoot set to /var/www/projectName/ and in your HTTPS Vhost the DocumentRoot is set to the default one: /var/www/html/ - though this is highly unlikely to be the problem, but you could try channing that.
And the more important thing is the fact that you don’t have your Proxy rules in the HTTPS VHost.
You need to make sure that you have the following rules copied to your HTTPS Vhost as well:
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / http://127.0.0.1:1337
ProxyPassReverse / http://127.0.0.1:1337
Redirect "/" "https://1.2.3.4/"
Hope that this helps! Bobby