• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

editing httpd.conf

L

LexI

Guest
I had a custom shopping cart system built for my site, but we have since discarded it. Unfortunately, the people who coded it inserted code into httpd.conf to require a password for accessing the /admin directory, and that is still active and interfering with current operations.

/var/www/vhosts/mydomain.com/conf/

Here is the text that was inserted into httpd.include :

Code:
<LocationMatch "/admin*">
AuthName "Need Password"
AuthType Basic
AuthUserFile /var/www/vhosts/mydomain.$
require valid-user
</LocationMatch>

My knowledge of Linux and Plesk is limited. I've found instructions on the web about how to add code to httpd.conf by using a vhost.conf file, but nothing about how to remove such code.

How do I get rid of it?
 
Back
Top