
However, it's recommended to create your own one since the browsers won't recognize it as a valid one since it's self-signed. Yes, the Bitnami Stack includes a dummy certificate. For example, if you edited the file /opt/bitnami/apache2/conf/bitnami/nf, ensure you add it in the Virtualhosts and Īs far as I understood from - the basic certificate is already included into the setup so you can make use of that one without creating your own.

What Apache configuration file did you modify including those lines? You need to be sure that both the VirtualHosts for port 80 and the one for port 443 include the ProxyPass redirections.

Those request are not being proxy-passed to port 5000 and, therefore, your app doesn't receive them. Your problem is that you're proxy-passing every request from port 80 to 5000 (where your app runs) but when using HTTPS your requests use the port 443. I've also found this question - Installing SSL on AWS EC2 Bitnami Mean Stack that didn't recieve a proper answer for more than a year. For example:ĭoes that mean that I need to reroute my :5000 port to :8443 ? The value specified in the Port directive. Have you installed any plugin or modified any configuration file: Describe here your question/suggestion/issue (expected and actual results): Steps to reproduce the issue (if relevant): Copy the apache log (if relevant): I have clone my MEAN stack application from git at path /home/bitnami. The /opt/bitnami/apache2/conf/bitnami/nf file and modifying The only thing you need is to enable it - That may be wrong assumption, let me know.Īpache waits for HTTPS requests on port 443. All Bitnami docs sound like it's assumed to be working already.Īs far as I understood from - the basic certificate is already included into the setup so you can make use of that one without creating your own.
#Configuring bitnami mean stack how to
I could not figure the right step by step guide on how to create or enable SSL. Now my app is available fine on :80 port via but I can't make it run via But access via https is what I wanted to achieve.

I didn't do any extra modifications of the apache2 setup except for the rerouting the port where my app runs to port 80, like this ProxyPass / I use a Bitnami MEAN installation ( ) v 3.2.11 on EC2.
