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: Apache24 not callin custom plugin with "require all gra |
|
Author |
|
muniyal
Joined: 25 Sep 2014 Posts: 2 Location: India, Delhi
|
Posted: Fri 26 Sep '14 7:34 Post subject: Apache24 not callin custom plugin with "require all gra |
|
|
I have installed Apache webserver version 2.4. We have a webserver plugin which is developed in c++ and is deployed on this webserver. This plugin does the job of authentication of users.
Issue is if I use :
<LocationMatch "/index.html">
require valid_user
</LocationMatch>
Apache2.4 Server Gives 500 internal server error
<LocationMatch "/index.html">
Require all granted
</LocationMatch>
My module/plugin is NOT ivoked, hence user not challenged.nPlease suggest me an apache24 directive which would call my module without giving interal server error |
|
Back to top |
|
James Blond Moderator

Joined: 19 Jan 2006 Posts: 7398 Location: EU, Germany, Next to Hamburg
|
Posted: Thu 02 Oct '14 11:41 Post subject: |
|
|
valid_user is not correct. It should be
|
|
Back to top |
|
|
|
|
|
|