{"id":298,"date":"2022-07-18T15:56:49","date_gmt":"2022-07-18T15:56:49","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=298"},"modified":"2022-07-20T08:17:23","modified_gmt":"2022-07-20T08:17:23","slug":"how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/","title":{"rendered":"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server"},"content":{"rendered":"\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"1200\" height=\"675\" src=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/mod_ssl_en.jpg\" alt=\"install mod_ssl on RHEL\/CentOS 7 with Apache\" class=\"wp-image-783\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/mod_ssl_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/mod_ssl_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/mod_ssl_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/mod_ssl_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/mod_ssl_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>The <strong>mod_ssl<\/strong> module provides SSL v3 and TLS v1.x with support to the Apache HTTP Server. This guide provides you with a basic step by step <strong>mod_ssl<\/strong> configuration on RHEL\/CentOS 7 Linux server using <strong>httpd<\/strong> Apache web server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Step-by-Step Instructions to Install mod_ssl on <\/strong>RHEL\/CentOS 7<\/h2>\n\n\n\n<p>We assume that you have already done a basic installation and configuration of Apache web server on your RHEL\/CentOS 7 server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step1: Install the <\/strong><strong>mod_ssl<\/strong><strong> module.<\/strong><\/h3>\n\n\n\n<p>The first step is to install <kbd><strong>mod_ssl<\/strong> <\/kbd>module with the <strong>yum<\/strong> command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo yum install mod_ssl<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step2: Enable the mod_ssl module.<\/strong><\/h3>\n\n\n\n<p>If you have just installed <strong>mod_ssl<\/strong>, it may not be enabled yet. To verify whether <strong>mod_ssl<\/strong> is enabled, you need to execute:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ apachectl -M | grep ssl<\/code><\/pre>\n\n\n\n<p>If you don\u2019t see any output from this last command, then your <strong>mod_ssl<\/strong> is disabled. To enable the <strong>mod_ssl<\/strong> module, go ahead and restart your <strong>httpd<\/strong> Apache web server:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted has-luminous-vivid-orange-color has-text-color\">ssl_module (shared)<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step3: Open TCP port 443 to allow incoming traffic with https protocol:<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ firewall-cmd --zone=public --permanent --add-service=https<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">success<\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ firewall-cmd --reload<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">success<\/pre>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>NOTE<\/strong><\/h4>\n\n\n\n<p>You should by now be able to log into your Apache web server via HTTPS protocol. Navigate your browser to <strong>https:\/\/your-server-ip<\/strong> or <strong>https:\/\/your-server-hostname<\/strong> to confirm <strong>mod_ssl <\/strong>configuration.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step4: Generating the SSL certificate.<\/strong><\/h3>\n\n\n\n<p>If you don\u2019t already have a proper SSL certificates for your server, use the following command&nbsp; to make a new self-signed certificate.<\/p>\n\n\n\n<p>For instance, let&#8217;s generate a new self-signed certificate for host <strong>rhel7 <\/strong>with 365 days until expiry:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ openssl req -newkey rsa:2048 -nodes -keyout \/etc\/pki\/tls\/private\/httpd.key -x509 -days 365 -out \/etc\/pki\/tls\/certs\/httpd.crt<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">Generating a RSA private key\n................+++++\n..........+++++\nwriting new private key to '\/etc\/pki\/tls\/private\/httpd.key'\n-----\nYou are about to be asked to enter information that will be incorporated\ninto your certificate request.\nWhat you are about to enter is what is called a Distinguished Name or a DN.\nThere are quite a few fields but you can leave some blank\nFor some fields there will be a default value,\nIf you enter '.', the field will be left blank.\n-----\nCountry Name (2 letter code) [XX]:AU\nState or Province Name (full name) []:\nLocality Name (eg, city) [Default City]:\nOrganization Name (eg, company) [Default Company Ltd]:LinuxConfig.org\nOrganizational Unit Name (eg, section) []:\nCommon Name (eg, your name or your server's hostname) []:rhel7\nEmail Address []:<\/pre>\n\n\n\n<p>Once the above command has been successfully executed, these two SSL files will be created:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"># ls -l \/etc\/pki\/tls\/private\/httpd.key \/etc\/pki\/tls\/certs\/httpd.crt\n-rw-r--r--. 1 root root 1269 Jan 29 16:05 \/etc\/pki\/tls\/certs\/httpd.crt\n-rw-------. 1 root root 1704 Jan 29 16:05 \/etc\/pki\/tls\/private\/httpd.key<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step5: Configure Apache web-server with new SSL certificates.<\/h2>\n\n\n\n<p>To insert your newly created SSL certificate in the Apache web-server configuration, go ahead and open the <strong><kbd>\/etc\/httpd\/conf.d\/ssl.conf<\/kbd><\/strong> file with administrative privileges and edit these lines:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">FROM:\nSSLCertificateFile \/etc\/pki\/tls\/certs\/localhost.crt\nSSLCertificateKeyFile \/etc\/pki\/tls\/private\/localhost.key\nTO:\nSSLCertificateFile \/etc\/pki\/tls\/certs\/<strong>httpd<\/strong>.crt\nSSLCertificateKeyFile \/etc\/pki\/tls\/private\/<strong>httpd<\/strong>.key<\/pre>\n\n\n\n<p>Once set, you need to restart the <strong>httpd<\/strong> Apache web-server:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ systemctl restart httpd<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step6: Test your mod_ssl configuration<\/h2>\n\n\n\n<p>Test through navigating to https:\/\/your-server-ip or https:\/\/your-server-hostname URL.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step7: You can optionally redirect all HTTP traffic to HTTPS.<\/h2>\n\n\n\n<p>For this, you\u2019ll need to create a new file <strong><kbd>\/etc\/httpd\/conf.d\/redirect_http.conf<\/kbd><\/strong> with the following content:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">&lt;VirtualHost _default_:80&gt;\n         Servername rhel7\n         Redirect permanent \/ https:\/\/rhel7\/\n&lt;\/VirtualHost&gt;<\/pre>\n\n\n\n<p>Restart the <strong>httpd<\/strong> daemon to apply the changes made<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ systemctl restart httpd<\/code><\/pre>\n\n\n\n<p>The configuration above will redirect any traffic from <strong>http:\/\/rhel7<\/strong> to <strong>https:\/\/rhel7<\/strong> URL.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The mod_ssl module provides SSL v3 and TLS v1.x with support to the Apache HTTP Server. This guide provides you with a basic step by step mod_ssl configuration on RHEL\/CentOS 7 Linux server using httpd Apache web server. Step-by-Step Instructions to Install mod_ssl on RHEL\/CentOS 7 We assume that you have already done a basic ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/\" title=\"read more...\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[3,4],"tags":[],"yoast_head":"\n<title>How to install mod_ssl on RHEL\/CentOS 7 with Apache web server - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"How to install mod_ssl on RHEL 7 \/CentOS 7 with Apache web server installation and configuration step by step.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"How to install mod_ssl on RHEL 7 \/CentOS 7 with Apache web server installation and configuration step by step.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/\" \/>\n<meta property=\"og:site_name\" content=\"WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webhi.technology\" \/>\n<meta property=\"article:published_time\" content=\"2022-07-18T15:56:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-20T08:17:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/mod_ssl_en.jpg\" \/>\n<meta name=\"author\" content=\"webhi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:site\" content=\"@WebHiTechnology\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"webhi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server\",\"datePublished\":\"2022-07-18T15:56:49+00:00\",\"dateModified\":\"2022-07-20T08:17:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/\"},\"wordCount\":384,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"Security\",\"Web servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/\",\"name\":\"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2022-07-18T15:56:49+00:00\",\"dateModified\":\"2022-07-20T08:17:23+00:00\",\"description\":\"How to install mod_ssl on RHEL 7 \/CentOS 7 with Apache web server installation and configuration step by step.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"name\":\"WebHi Tutorials &amp; Documentations\",\"description\":\"System administration and knowledge base\",\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\",\"name\":\"WebHi Technology\",\"url\":\"https:\/\/www.webhi.com\/how-to\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png\",\"width\":288,\"height\":95,\"caption\":\"WebHi Technology\"},\"image\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webhi.technology\",\"https:\/\/twitter.com\/WebHiTechnology\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\",\"name\":\"webhi\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353\",\"caption\":\"webhi\"},\"sameAs\":[\"https:\/\/www.webhi.com\/how-to\"],\"url\":\"https:\/\/www.webhi.com\/how-to\/author\/webhi\/\"}]}<\/script>\n","yoast_head_json":{"title":"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server - WebHi Tutorials &amp; Documentations","description":"How to install mod_ssl on RHEL 7 \/CentOS 7 with Apache web server installation and configuration step by step.","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:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/","og_locale":"en_US","og_type":"article","og_title":"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server - WebHi Tutorials &amp; Documentations","og_description":"How to install mod_ssl on RHEL 7 \/CentOS 7 with Apache web server installation and configuration step by step.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2022-07-18T15:56:49+00:00","article_modified_time":"2022-07-20T08:17:23+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/mod_ssl_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server","datePublished":"2022-07-18T15:56:49+00:00","dateModified":"2022-07-20T08:17:23+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/"},"wordCount":384,"commentCount":0,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["Security","Web servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/","name":"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2022-07-18T15:56:49+00:00","dateModified":"2022-07-20T08:17:23+00:00","description":"How to install mod_ssl on RHEL 7 \/CentOS 7 with Apache web server installation and configuration step by step.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-mod_ssl-on-rhel-centos-7-with-apache-web-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to install mod_ssl on RHEL\/CentOS 7 with Apache web server"}]},{"@type":"WebSite","@id":"https:\/\/www.webhi.com\/how-to\/#website","url":"https:\/\/www.webhi.com\/how-to\/","name":"WebHi Tutorials &amp; Documentations","description":"System administration and knowledge base","publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.webhi.com\/how-to\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.webhi.com\/how-to\/#organization","name":"WebHi Technology","url":"https:\/\/www.webhi.com\/how-to\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/","url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","contentUrl":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2022\/07\/logo.png","width":288,"height":95,"caption":"WebHi Technology"},"image":{"@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webhi.technology","https:\/\/twitter.com\/WebHiTechnology"]},{"@type":"Person","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54","name":"webhi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/image\/","url":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1782424353","caption":"webhi"},"sameAs":["https:\/\/www.webhi.com\/how-to"],"url":"https:\/\/www.webhi.com\/how-to\/author\/webhi\/"}]}},"_links":{"self":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/298"}],"collection":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/comments?post=298"}],"version-history":[{"count":25,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/298\/revisions"}],"predecessor-version":[{"id":1216,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/298\/revisions\/1216"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=298"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=298"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=298"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}