logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

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.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: Authentication frequency in httpd.conf
Author
Hamzaaton



Joined: 05 Nov 2015
Posts: 1
Location: Tunisia

PostPosted: Thu 05 Nov '15 18:10    Post subject: Authentication frequency in httpd.conf Reply with quote

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


Reply to topic   Topic: Authentication frequency in httpd.conf View previous topic :: View next topic
Post new topic   Forum Index -> Apache