By abdullaoglu
Hello, My DNS and HTTP servers are same machine and I have ns1, ns2 A records in DNS configuration file. How I can disable following http access?:
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Am on WHM/Cpanel (Centos) with Apache
Can I use any option on WHM to do it ?
I am a beginner, thanks
Where I put this code ?
<VirtualHost *:80> ServerName www.mydomain.com DocumentRoot /var/www/html
# The rest of you VirtualHost configuration....
</VirtualHost>
<VirtualHost *:80> ServerName ns1.mydomain.com <Location /> Order allow,deny Deny from all </Location> </VirtualHost>
Hi! It’s a little unclear what you’re after. If you can expand on your question with some more details, it would help us to better answer it. What are you using as your web server? Apache? Nginx?
Nameservers generally listen on port 53 while HTTP listens on port 80. Assuming you have A records pointing both ns1.mydomain.com and www.mydomain.com to the same IP address, there’s no way to disable HTTP access completely. Though you could make a 403 Forbidden error for requests to ns1.mydomain.com. You could use something like:
<VirtualHost *:80>
ServerName www.mydomain.com
DocumentRoot /var/www/html
# The rest of you VirtualHost configuration....
</VirtualHost>
<VirtualHost *:80>
ServerName ns1.mydomain.com
<Location />
Order allow,deny
Deny from all
</Location>
</VirtualHost>
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.