Hey all,
I haven't done this in quite some time so I'm VERY rusty. I appreciate the understanding.
I am trying to create an .htaccess file that will simply prompt me for a password. This is what I have so far:
AuthUserfile /var/www/html/[myFolderName]/.htpasswd
AuthGroupFile /dev/null
AuthName "[myFolderName]"
AuthType Basic
<Limit GET>
satisfy any
order deny,allow
deny from all
require user mtorbin
</Limit>
Should this not just simply prompt me for the password I set up in .htpasswd? Unfortunately, it isn't doing that. Now I haven't touched my httpd.conf file yet but that shouldn't matter, right? This is just simple Apache 101. Please advise.
- MT
I haven't done this in quite some time so I'm VERY rusty. I appreciate the understanding.
I am trying to create an .htaccess file that will simply prompt me for a password. This is what I have so far:
AuthUserfile /var/www/html/[myFolderName]/.htpasswd
AuthGroupFile /dev/null
AuthName "[myFolderName]"
AuthType Basic
<Limit GET>
satisfy any
order deny,allow
deny from all
require user mtorbin
</Limit>
Should this not just simply prompt me for the password I set up in .htpasswd? Unfortunately, it isn't doing that. Now I haven't touched my httpd.conf file yet but that shouldn't matter, right? This is just simple Apache 101. Please advise.
- MT