{"id":604,"date":"2018-07-04T03:30:32","date_gmt":"2018-07-04T08:30:32","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=604"},"modified":"2018-07-04T03:34:05","modified_gmt":"2018-07-04T08:34:05","slug":"how-to-set-up-apache-with-http-2-support-on-debian-9","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/","title":{"rendered":"How To Set Up Apache with HTTP\/2 Support on Debian 9"},"content":{"rendered":"<div id=\"linux-3769364665\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>We will show you how to set up Apache with HTTP\/2 support on Debian 9. HTTP\/2 is a major revision of the HTTP network protocol. It is derived from the experimental SPDY protocol developed by Google. The primary goal of HTTP\/2 is to reduce the latency, minimize the protocol overhead and add support for request prioritization. This makes the web applications to load much faster.High level syntax like status codes, methods, headers fields, URIs etc. are the same as the earlier version of HTTP except there is a difference on how the data is framed and transported between the client and the server.<\/p>\n<p><!--more--><\/p>\n<p>The Apache web server version that is available in the Debian 9 repositories has HTTP\/2 support out of the box. Basically, when you install Apache web server on your Debian 9 VPS, you have the HTTP\/2 module available to use. There is no need to install Apache from source like before when the earlier versions of HTTP\/2 were not ready for production.<\/p>\n<h3>Enable HTTP\/2 module in Apache<\/h3>\n<p>The HTTP\/2 protocol is implemented by its own Apache module named <code>mod_http2<\/code>. To be able to use HTTP\/2 in Apache you need to make sure the module is enabled. Connect to your server via SSH and run the following command to enable the HTTP\/2 module in Apache:<\/p>\n<pre>a2enmod http2<\/pre>\n<p>You will see the following output:<\/p>\n<pre># a2enmod http2\r\nEnabling module http2.\r\nTo activate the new configuration, you need to run:\r\n  systemctl restart apache2<\/pre>\n<p>The output tells you that the module is enabled in Apache and that you need to restart the Apache service for the changes to take effect. To restart the Apache service, run the following command:<\/p>\n<pre>systemctl restart apache2<\/pre>\n<p>To make sure the module is enabled and ready to use make check the following file:<\/p>\n<pre>cat \/etc\/apache2\/mods-enabled\/http2.load<\/pre>\n<p>and make sure the following line is there:<\/p>\n<pre>LoadModule http2_module \/usr\/lib\/apache2\/modules\/mod_http2.so<\/pre>\n<p>Or, simply use the following command and it will show you whether the module is enabled or not:<\/p>\n<pre>apache2ctl -M | grep http2<\/pre>\n<p>If it is enabled, the output will be similar to the following:<\/p>\n<pre># apache2ctl -M | grep http2\r\n http2_module (shared)<\/pre>\n<h3>Enable HTTP\/2 in your Apache virtual host<\/h3>\n<p>Most browsers will speak HTTP\/2 only via HTTPS which means your web server must have support for HTTPS and you need to have a valid SSL certificate installed. Otherwise, HTTP\/2 will not work. To enable global support for HTTP\/2 in Apache edit the default SSL virtual host configuration file using a text editor of your choice. We are using <code>nano<\/code> in our example:<\/p>\n<pre>nano \/etc\/apache2\/sites-enabled\/default-ssl.conf<\/pre>\n<p>and add the following line after the opening <code>&lt;VirtualHost *:443&gt;<\/code> tag:<\/p>\n<pre>Protocols h2 h2c http\/1.1<\/pre>\n<p>If you want to enable HTTP\/2 for specific domain\/website, add that line in the virtual host for that specific website. The virtual host for your domain should look like the following one:<\/p>\n<pre>&lt;VirtualHost *:443&gt;\r\n    Protocols h2 h2c http\/1.1\r\n    ServerAdmin info@example.com\r\n    ServerName www.example.com\r\n    ServerAlias example.com\r\n    DocumentRoot \/var\/www\/html\/example.com\r\n\r\n    SSLEngine On\r\n    SSLCertificateFile \/etc\/ssl\/certs\/example.com.crt\r\n    SSLCertificateKeyFile \/etc\/ssl\/private\/example.com.key\r\n    SSLCACertificateFile \/etc\/ssl\/certs\/ca-certificates.crt\r\n\r\n    &lt;Directory \/var\/www\/html\/example.com\/&gt;\r\n      Options Indexes FollowSymLinks MultiViews\r\n      AllowOverride All\r\n      Order allow,deny\r\n      allow from all\r\n     &lt;\/Directory&gt;\r\n\r\n    ErrorLog \/var\/www\/html\/example.com\/log\/error.log\r\n    CustomLog \/var\/www\/html\/example.com\/log\/access.log combined\r\n&lt;\/VirtualHost&gt;\r\n<\/pre>\n<p>Once you add the line related to protocols in your Apache virtual host file, you have to restart Apache again for the changes to take effect.<\/p>\n<p>Please note, the order of protocols is relevant so the first one is the most preferred protocol when the client offers multiple choices. Here, <code>h2<\/code> means HTTP\/2 will be used over TLS (protocol negotiation via ALPN), while <code>h2c<\/code> means HTTP\/s will be used over TCP. <code>http\/1.1<\/code> means that if the client doesn&#8217;t accept HTTP\/2 then the request will be served over HTTP\/1.1.<\/p>\n<h3>Verify that HTTP\/2 support is enabled in Apache<\/h3>\n<p>To check whether HTTP\/2 is successfully enabled in Apache you can use RoseHosting&#8217;s\u00a0online <a href=\"https:\/\/www.rosehosting.com\/network-tools\/http2-support.html\" target=\"_blank\" rel=\"noopener\">HTTP\/2 checker tool<\/a> or any other similar tool available online.<\/p>\n<hr \/>\n<p>Of course, you don\u2019t have to set up Apache with HTTP\/2 support on Debian 9, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux Server Management\u00a0Services<\/a>, in which case you can simply ask our expert Linux admins to set up Apache with HTTP\/2 support on Debian 9 for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n<p>PS. If you liked this post on how to set up Apache with HTTP\/2 support on Debian 9, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-2880434010\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>We will show you how to set up Apache with HTTP\/2 support on Debian 9. HTTP\/2 is a major revision of the HTTP network protocol. It is derived from the experimental SPDY protocol developed by Google. The primary goal of HTTP\/2 is to reduce the latency, minimize the protocol overhead and add support for request [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":605,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[67,28,108],"class_list":["post-604","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-apache","tag-debian","tag-http-2"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How To Set Up Apache with HTTP\/2 Support on Debian 9 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"We will show you how to set up Apache with HTTP\/2 support on Debian 9. HTTP\/2 is a major revision of the HTTP network protocol. It is derived from the\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Set Up Apache with HTTP\/2 Support on Debian 9 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"We will show you how to set up Apache with HTTP\/2 support on Debian 9. HTTP\/2 is a major revision of the HTTP network protocol. It is derived from the\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-07-04T08:30:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-07-04T08:34:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\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:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How To Set Up Apache with HTTP\\\/2 Support on Debian 9\",\"datePublished\":\"2018-07-04T08:30:32+00:00\",\"dateModified\":\"2018-07-04T08:34:05+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/\"},\"wordCount\":648,\"commentCount\":3,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg\",\"keywords\":[\"apache\",\"debian\",\"http\\\/2\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/\",\"name\":\"How To Set Up Apache with HTTP\\\/2 Support on Debian 9 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg\",\"datePublished\":\"2018-07-04T08:30:32+00:00\",\"dateModified\":\"2018-07-04T08:34:05+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"We will show you how to set up Apache with HTTP\\\/2 support on Debian 9. HTTP\\\/2 is a major revision of the HTTP network protocol. It is derived from the\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/07\\\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg\",\"width\":750,\"height\":410,\"caption\":\"How To Set Up Apache with HTTP\\\/2 Support on Debian 9\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-set-up-apache-with-http-2-support-on-debian-9\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Set Up Apache with HTTP\\\/2 Support on Debian 9\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Set Up Apache with HTTP\/2 Support on Debian 9 | LinuxHostSupport","description":"We will show you how to set up Apache with HTTP\/2 support on Debian 9. HTTP\/2 is a major revision of the HTTP network protocol. It is derived from the","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:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/","og_locale":"en_US","og_type":"article","og_title":"How To Set Up Apache with HTTP\/2 Support on Debian 9 | LinuxHostSupport","og_description":"We will show you how to set up Apache with HTTP\/2 support on Debian 9. HTTP\/2 is a major revision of the HTTP network protocol. It is derived from the","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-07-04T08:30:32+00:00","article_modified_time":"2018-07-04T08:34:05+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How To Set Up Apache with HTTP\/2 Support on Debian 9","datePublished":"2018-07-04T08:30:32+00:00","dateModified":"2018-07-04T08:34:05+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/"},"wordCount":648,"commentCount":3,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg","keywords":["apache","debian","http\/2"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/","name":"How To Set Up Apache with HTTP\/2 Support on Debian 9 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg","datePublished":"2018-07-04T08:30:32+00:00","dateModified":"2018-07-04T08:34:05+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"We will show you how to set up Apache with HTTP\/2 support on Debian 9. HTTP\/2 is a major revision of the HTTP network protocol. It is derived from the","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/07\/How-To-Set-Up-Apache-with-HTTP-2-Support-on-Debian-9.jpg","width":750,"height":410,"caption":"How To Set Up Apache with HTTP\/2 Support on Debian 9"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-set-up-apache-with-http-2-support-on-debian-9\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Set Up Apache with HTTP\/2 Support on Debian 9"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/604","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=604"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/604\/revisions"}],"predecessor-version":[{"id":607,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/604\/revisions\/607"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/605"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=604"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=604"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=604"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}