/opt/bitnami
Start the service
sudo /opt/bitnami/ctlscript.sh start
Create the directories (below this, change YOUR_APP to your app name)
sudo mkdir /opt/bitnami/apps/YOUR_APP
sudo mkdir /opt/bitnami/apps/YOUR_APP/conf
sudo mkdir /opt/bitnami/apps/YOUR_APP/htdocs
httpd-prefix.conf
config file sudo touch /opt/bitnami/apps/YOUR_APP/conf/httpd-prefix.conf
sudo vim /opt/bitnami/apps/YOUR_APP/conf/httpd-prefix.conf
Insert the following to httpd-prefix.conf
then save
Include "/opt/bitnami/apps/YOUR_APP/conf/httpd-app.conf
Create httpd-app.conf
config file
sudo touch /opt/bitnami/apps/YOUR_APP/conf/httpd-app.conf
sudo vim /opt/bitnami/apps/YOUR_APP/conf/httpd-app.conf
httpd-app.conf
then save ProxyPass / http://127.0.0.1:3000/
ProxyPassReverse / http://127.0.0.1:3000/
sudo vim /opt/bitnami/apache2/conf/bitnami/bitnami-apps-prefix.conf
Include "/opt/bitnami/apps/YOUR_APP/conf/httpd-prefix.conf"