I am currently using the bitnami wordpress stack, I have a website I'm working on but I also want to start another but I don't want to use multisite because I don't want them to share a database.
so is it possible to install another WordPress on bitnami? if yes how do i go about it?
Bitnami Engineer here,
You can deploy another application on top of a running Bitnami instance by following these steps. They assume that your application will live in the /opt/bitnami/apps/myapp/ directory:
NOTE: If your application uses .htaccess files, you should change the AllowOverride None option to AllowOverride All. Find out how to move the .htaccess file content to the main server configuration file.
Once you have created the files and directories above, add the following line to the end of the main Apache configuration file at /opt/bitnami/apache2/conf/bitnami/bitnami-apps-prefix.conf, as shown below:
Restart the Apache server:
You should now be able to access the application at http://SERVER-IP/myapp.
You can find more information about how to deploy a custom application in this guide of our documentation
https://docs.bitnami.com/general/apps/wordpress/administration/create-custom-application-php/
Thanks