no preface for using the embedded code but it was straight forward enough to implement WOW way to go !
Main Topics
Browse All TopicsI have a .war file which consists of two individual URL automatic re-write addresses
a) /admin
b) /customer
each of these mappings resolve to two separate java servlet beans
In my httpd.conf I have port 443 only set NO port 80
My Goal ::.
**************************
How can I restrict the auto re-write URL a) /admin to ONLY be accessible
by a whitelist ip cluster ***.***.***.*** and not impact URL b) /customers
accessibility from the public Internet Cloud from all :443 client requests ?
**************************
Can I add a distinct Virtual Host instruction block with specific restriction clause
configurations for /admin directory whitelisting the targeted IP octet cluster?
thanks in advance
I posted before but said it was an answer when it only sort of worked but did not fully solve the administration I intended.
adding did not seem to be enough :
<Location /admin/>
Order Deny,Allow
Deny from all
Allow from xxx.yyy.zzz
...
</Location>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: mwecomputersPosted on 2009-10-27 at 07:53:53ID: 25673055
Add this into your virtual host...
Select allOpen in new window