@jcarmona
Please see the guide at https://docs.bitnami.com/virtual-machine/infrastructure/lamp/configuration/configure-custom-application/
The tutorial there has the following text:
The httpd-vhosts.conf file contains the default configuration for virtual hosts, for applications to be accessed at (for example) http://myapp.example.com.
<VirtualHost *:8080>
ServerName myapp.example.com
DocumentRoot "/opt/bitnami/apps/myapp/htdocs"
Include "/opt/bitnami/apps/myapp/conf/httpd-app.conf"
</VirtualHost>
<VirtualHost *:8444>
ServerName myapp.example.com
DocumentRoot "/opt/bitnami/apps/myapp/htdocs"
SSLEngine on
SSLCertificateFile "/opt/bitnami/apps/myapp/conf/certs/server.crt"
SSLCertificateKeyFile "/opt/bitnami/apps/myapp/conf/certs/server.key"
Include "/opt/bitnami/apps/myapp/conf/httpd-app.conf"
</VirtualHost>
In that example, ports 8080 and 8444 are cited.
For those of us just "following the recipe" and copy-pasting with minimal changes, it can be misleading.
Thanks