{"id":6582,"date":"2021-10-30T18:14:41","date_gmt":"2021-10-30T12:44:41","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=6582"},"modified":"2021-10-30T18:14:42","modified_gmt":"2021-10-30T12:44:42","slug":"hide-server-details-and-disable-tlsv1-0-and-tlsv1-1","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/","title":{"rendered":"Hide server details and disable TLSV1.0 and TLSV1.1"},"content":{"rendered":"\n<p class=\"has-medium-font-size\"><strong>Remove server name from Apache headers<\/strong>:- <\/p>\n\n\n\n<p>It is essential to remove Apache server header to hide Apache server information and protect your website from malicious attackers. Here\u2019s how to remove server name from Apache response header using htaccess. You can use it to hide the Apache version and server type in Ubuntu, CentOS.<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li>Open terminal and run the following command to open Apache main configuration file.<br><strong>Centos:-<\/strong> <span class=\"has-inline-color has-vivid-cyan-blue-color\">vi \/etc\/httpd\/conf\/httpd.conf<\/span><br><strong>Ubuntu:- <\/strong><span class=\"has-inline-color has-vivid-cyan-blue-color\">vi \/etc\/apache2\/apache2.conf<\/span><\/li><li>Turn off server signature. Add or Modify the below lines<br><span class=\"has-inline-color has-vivid-cyan-blue-color\">ServerSignature Off<br>ServerTokens Prod<\/span><\/li><\/ol>\n\n\n\n<p><strong>ServerSignature<\/strong>\u00a0\u2013 appears at the bottom of server generated pages such as error pages, directory listings, etc<\/p>\n\n\n\n<p><strong>ServerTokens<\/strong>\u00a0\u2013\u00a0decides what Apache will send back in response headers.<\/p>\n\n\n\n<p>If you want to disable server signature in WordPress or turn off server signature in CPanel, then you will have to remove Apache server using\u00a0<em>.htaccess<\/em>\u00a0file, since you may not have access to Apache\u2019s main configuration file.<br><br>Open CPanel, locate\u00a0<em>.htaccess<\/em>\u00a0file and edit it. Add the following 2 lines to\u00a0<em>.htaccess<\/em>\u00a0file<br><span style=\"font-size: revert\">ServerSignature Off<\/span><br><span style=\"font-size: revert\">ServerTokens Prod<\/span><\/p>\n\n\n\n<p>3. Restart the Apache server with the below command.<br><span class=\"has-inline-color has-vivid-cyan-blue-color\">systemctl restart apache2<\/span><\/p>\n\n\n\n<p><\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Disable TLSV1.0 and TLSV1.1:- <\/strong><\/p>\n\n\n\n<p>All versions of the SSL\/TLS protocol prior to TLS 1.2 are now deprecated and considered insecure.\u00a0Many web server platforms still have TLS 1.0 and TLS 1.1 enabled by default. However, all modern web browsers are compatible with TLS 1.2. For this reason, it\u2019s a good idea for website owners to check their server configuration to make sure that only current, secure versions of SSL\/TLS are enabled and all others (including TLS 1.0, TLS 1.1, and SSL 3.0) are disabled.<\/p>\n\n\n\n<p>You can also check for the SSL\/TLS versions and ciphers supported by a website with the open-source nmap command-line tool:<\/p>\n\n\n\n<p><span class=\"has-inline-color has-vivid-cyan-blue-color\">nmap &#8211;script ssl-enum-ciphers -p &lt;PORT&gt; &lt;DOMAIN NAME&gt;<\/span><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM.png\"><img loading=\"lazy\" decoding=\"async\" width=\"937\" height=\"1024\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-937x1024.png\" alt=\"\" class=\"wp-image-6583\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-937x1024.png 937w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-275x300.png 275w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-768x839.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-1406x1536.png 1406w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM.png 1560w\" sizes=\"auto, (max-width: 937px) 100vw, 937px\" \/><\/a><\/figure>\n\n\n\n<p>To disable TLS 1.0 and 1.1 in Apache, you will need to edit the configuration file containing the SSLProtocol directive for your website. This file may be located in different places depending on your platform, version, or other installation details. Some possible locations are:<\/p>\n\n\n\n<p><span class=\"has-inline-color has-black-color\">Default Apache installation:-<\/span><span class=\"has-inline-color has-vivid-cyan-blue-color\"> \/usr\/local\/apache2\/conf\/extra\/httpd-ssl.conf<br><\/span><span class=\"has-inline-color has-black-color\">Ubuntu\/Debian:-<\/span><span class=\"has-inline-color has-vivid-cyan-blue-color\"> \/etc\/apache2\/mods-enabled\/ssl.conf<br><\/span><span class=\"has-inline-color has-black-color\">macOS:-<\/span><span class=\"has-inline-color has-vivid-cyan-blue-color\">  \/private\/etc\/apache2\/extra\/httpd-ssl.conf<\/span><\/p>\n\n\n\n<p>You can disable all obsolete versions of SSL\/TLS supported by Apache by specifying them as follows:<br><span class=\"has-inline-color has-vivid-cyan-blue-color\">SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1<\/span><\/p>\n\n\n\n<p>The configuration above enables TLS 1.2, as well as TLS 1.3 if it is available in your environment.<\/p>\n\n\n\n<p class=\"has-normal-font-size\"><strong>Disabling TLSV1.0 and TLSV1.1 at load-balancer level:-<\/strong> <br><br>1) Log into the AWS Console and navigate to the EC2 group. Within this group, click the\u00a0<strong>Load Balancers<\/strong>option under Load Balancing.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.04.07-PM-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"736\" height=\"564\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.04.07-PM-1.png\" alt=\"\" class=\"wp-image-6585\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.04.07-PM-1.png 736w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.04.07-PM-1-300x230.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.04.07-PM-1-391x300.png 391w\" sizes=\"auto, (max-width: 736px) 100vw, 736px\" \/><\/a><\/figure>\n\n\n\n<p>2) At the bottom of the screen, click the\u00a0<strong>Listeners<\/strong>\u00a0tab. You should see your HTTPS listener listed. Click the\u00a0<strong>Change<\/strong>\u00a0link under the Cipher column.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.07.37-PM-1.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"330\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.07.37-PM-1-1024x330.png\" alt=\"\" class=\"wp-image-6587\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.07.37-PM-1-1024x330.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.07.37-PM-1-300x97.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.07.37-PM-1-768x247.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.07.37-PM-1-850x274.png 850w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.07.37-PM-1.png 1472w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p class=\"has-normal-font-size\">    <br><br>3) You will see a list of Predefined Security Policies in the window that just opened. Ensure you select at least the TLS 1.1 or higher policy. You will notice the selections in the window to the right changing, leaving both vulnerable protocols unchecked.<br><\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.11.14-PM.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"588\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.11.14-PM-1024x588.png\" alt=\"\" class=\"wp-image-6588\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.11.14-PM-1024x588.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.11.14-PM-300x172.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.11.14-PM-768x441.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.11.14-PM-1536x882.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.11.14-PM-522x300.png 522w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.11.14-PM.png 1968w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<p>Finally, click the\u00a0<strong>Save<\/strong>\u00a0button to confirm the changes. You can make use of a service like\u00a0<a href=\"https:\/\/www.ssllabs.com\/ssltest\/\" target=\"_blank\" rel=\"noreferrer noopener\">Qualys<\/a>\u00a0to confirm your changes:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.12.01-PM.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"277\" src=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.12.01-PM-1024x277.png\" alt=\"\" class=\"wp-image-6589\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.12.01-PM-1024x277.png 1024w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.12.01-PM-300x81.png 300w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.12.01-PM-768x207.png 768w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.12.01-PM-1536x415.png 1536w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.12.01-PM-850x230.png 850w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-6.12.01-PM.png 1844w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n","protected":false},"excerpt":{"rendered":"<p>Remove server name from Apache headers:- It is essential to remove Apache server header to hide Apache server information and protect your website from malicious attackers. Here\u2019s how to remove server name from Apache response header using htaccess. You can use it to hide the Apache version and server type&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Hide server details and disable TLSV1.0 and TLSV1.1<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[313,637,819,220],"tags":[398,925,926,924,923],"class_list":{"0":"post-6582","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-apache","7":"category-apache-2","8":"category-aws","9":"category-web-server","10":"tag-apache2","11":"tag-disable-tlsv1-0-and-tlsv1-1","12":"tag-disable-tlsv1-0-and-tlsv1-1-at-loadbalancer-level","13":"tag-hide-server-details","14":"tag-loadbalancer","15":"h-entry","17":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Remove server name from Apache headers:- It is essential to remove Apache server header to hide Apache server information and protect your website from malicious attackers. Here\u2019s how to remove server name from Apache response header using htaccess. You can use it to hide the Apache version and server type&hellip; Continue Reading Hide server details and disable TLSV1.0 and TLSV1.1\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-30T12:44:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-10-30T12:44:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-937x1024.png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Hide server details and disable TLSV1.0 and TLSV1.1\",\"datePublished\":\"2021-10-30T12:44:41+00:00\",\"dateModified\":\"2021-10-30T12:44:42+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/\"},\"wordCount\":537,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/Screenshot-2021-10-30-at-5.50.21-PM-937x1024.png\",\"keywords\":[\"apache2\",\"disable tlsv1.0 and tlsv1.1\",\"disable tlsv1.0 and tlsv1.1 at loadbalancer level\",\"hide server details\",\"loadbalancer\"],\"articleSection\":[\"Apache\",\"Apache\",\"AWS\",\"Web Server\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/Screenshot-2021-10-30-at-5.50.21-PM-937x1024.png\",\"datePublished\":\"2021-10-30T12:44:41+00:00\",\"dateModified\":\"2021-10-30T12:44:42+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/Screenshot-2021-10-30-at-5.50.21-PM.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/10\\\/Screenshot-2021-10-30-at-5.50.21-PM.png\",\"width\":1560,\"height\":1704},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Hide server details and disable TLSV1.0 and TLSV1.1\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Remove server name from Apache headers:- It is essential to remove Apache server header to hide Apache server information and protect your website from malicious attackers. Here\u2019s how to remove server name from Apache response header using htaccess. You can use it to hide the Apache version and server type&hellip; Continue Reading Hide server details and disable TLSV1.0 and TLSV1.1","og_url":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2021-10-30T12:44:41+00:00","article_modified_time":"2021-10-30T12:44:42+00:00","og_image":[{"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-937x1024.png","type":"","width":"","height":""}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Hide server details and disable TLSV1.0 and TLSV1.1","datePublished":"2021-10-30T12:44:41+00:00","dateModified":"2021-10-30T12:44:42+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/"},"wordCount":537,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-937x1024.png","keywords":["apache2","disable tlsv1.0 and tlsv1.1","disable tlsv1.0 and tlsv1.1 at loadbalancer level","hide server details","loadbalancer"],"articleSection":["Apache","Apache","AWS","Web Server"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/","url":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/#primaryimage"},"thumbnailUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM-937x1024.png","datePublished":"2021-10-30T12:44:41+00:00","dateModified":"2021-10-30T12:44:42+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/#primaryimage","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2021\/10\/Screenshot-2021-10-30-at-5.50.21-PM.png","width":1560,"height":1704},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/hide-server-details-and-disable-tlsv1-0-and-tlsv1-1\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Hide server details and disable TLSV1.0 and TLSV1.1"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1Ia","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6582","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=6582"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6582\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=6582"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=6582"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=6582"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}