Allow User to access the app
1. Create/Update `.htaccess` file in root directory:
touch .htaccess vi .htaccessThen, add following content:
AuthUserFile /home/bitnami/htdocs/.htpasswd AuthGroupFile /dev/null AuthName "Application Authentication" AuthType Basic require user demo-user1 require user test-user23. And, for passwords, create `.htpasswd` file in root directory.
touch .htpasswd.4. To add/edit password, run the following command:
htpasswd -c .htpasswd demo-user1And, follow instruction ahead.