Apache basic authentication & authorization
The basic AuthType is used for both authentication and authorization process. This is the most common way of doing. The credentials are encrypted and stored in a file. The command to create/update this credential file is htpasswd. htpasswd -c /PATH/.htpasswd USER1 htpasswd /PATH/.htpasswd USER2 htpasswd /PATH/.htpasswd USER2 The -c option should be used if the password […]
