Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: Authentication frequency in httpd.conf |
|
Author |
|
Hamzaaton
Joined: 05 Nov 2015 Posts: 1 Location: Tunisia
|
Posted: Thu 05 Nov '15 18:10 Post subject: Authentication frequency in httpd.conf |
|
|
I am making a basic authentication for a directory on my website using the Location block in the httpd.conf file like this :
Code: | <Location /hr-dms/attachment.blob>
AuthUserFile ./users/users1
AuthName "HR-DMS CONTENT"
#AuthGroupFile ./users/null
AuthType Basic
Require valid-user
</Location> |
It appears that if the authentication is once verified, it won't be demanded until the session expires or I close my browser. And I would like to make the authentication whenever someone go to the specified location not only once.
Is there any parameter to add in the Location block allowing that to happen or any other solution to do so ?
Thank you. |
|
Back to top |
|
|
|
|
|
|