{"id":6009,"date":"2023-07-18T16:44:07","date_gmt":"2023-07-18T16:44:07","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=6009"},"modified":"2023-07-18T16:44:09","modified_gmt":"2023-07-18T16:44:09","slug":"generate-lets-encrypt-wildcard-certificates-nginx","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/","title":{"rendered":"Create Let&#8217;s Encrypt Wildcard Certificates in NGINX"},"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\/2023\/07\/certbot_lets_ubuntu_en.jpg\" alt=\"Generate Let's Encrypt Wildcard Certificates Certbot\" class=\"wp-image-6026\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/07\/certbot_lets_ubuntu_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/07\/certbot_lets_ubuntu_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/07\/certbot_lets_ubuntu_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/07\/certbot_lets_ubuntu_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/07\/certbot_lets_ubuntu_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>Let&#8217;s Encrypt is a free, automated, and open certificate authority (CA) that provides SSL\/TLS certificates for enabling HTTPS on your website. Let&#8217;s Encrypt wildcard certificates allow you to secure unlimited subdomains under a base domain (e.g. *.example.com).<\/p>\n\n\n\n<p>In this tutorial, we will show you how to use Certbot to generate Let&#8217;s Encrypt wildcard certificates and set up HTTPS on an Nginx web server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"prerequisites\">Prerequisites<\/h2>\n\n\n\n<p>Before following this guide, you&#8217;ll need:<\/p>\n\n\n\n<ul>\n<li>A server running Ubuntu 20.04 with a public IPv4 address and a regular non-root user with sudo privileges.<\/li>\n\n\n\n<li>Domain names pointing to your server&#8217;s public IP. In our examples, we will use&nbsp;<code>example.com<\/code>&nbsp;and&nbsp;<code>*.example.com<\/code>.<\/li>\n\n\n\n<li>Ports 80 and 443 open on your server&#8217;s firewall.<\/li>\n\n\n\n<li>Nginx installed on your server. If you don&#8217;t have it yet, you can install it with:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install nginx<\/code><\/pre>\n\n\n\n<ul>\n<li>Certbot installed on your server. If it&#8217;s not already installed, you can install it with:<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt install certbot python3-certbot-nginx<\/code><\/pre>\n\n\n\n<p>Once you have met all the prerequisites, let&#8217;s move on to generating wildcard certificates.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-1--generating-wildcard-certificates\">Step 1 \u2014 Generating Wildcard Certificates<\/h2>\n\n\n\n<p>Certbot includes a&nbsp;<code>certonly<\/code>&nbsp;command for obtaining SSL\/TLS certificates. To generate a wildcard certificate for&nbsp;<code>*.example.com<\/code>, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo certbot certonly --manual --preferred-challenges=dns --server https:\/\/acme-v02.api.letsencrypt.org\/directory --agree-tos -d *.example.com<\/code><\/pre>\n\n\n\n<p>This tells Certbot to:<\/p>\n\n\n\n<ul>\n<li>Use the &#8220;manual&#8221; plugin for obtaining certificates<\/li>\n\n\n\n<li>Use the &#8220;dns&#8221; challenge to validate domain ownership<\/li>\n\n\n\n<li>Use Let&#8217;s Encrypt&#8217;s ACME v2 API endpoint<\/li>\n\n\n\n<li>Agree to Let&#8217;s Encrypt&#8217;s Terms of Service<\/li>\n\n\n\n<li>Obtain a certificate for&nbsp;<code>*.example.com<\/code><\/li>\n<\/ul>\n\n\n\n<p>You will be prompted to enter an email address for certificate expiration notifications. Enter your email and press Enter.<\/p>\n\n\n\n<p>Next, Certbot will provide TXT records that need to be created in your domain&#8217;s DNS to validate control over the domain. Create these TXT records in your DNS control panel, then press Enter to continue.<\/p>\n\n\n\n<p>Certbot will wait for the DNS changes to propagate globally and verify the TXT records. If successful, the wildcard certificate (<code>fullchain.pem<\/code>) and private key (<code>privkey.pem<\/code>) will be saved under&nbsp;<code>\/etc\/letsencrypt\/live\/example.com\/<\/code>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"step-2---configuring-nginx\">Step 2 &#8211; Configuring Nginx<\/h2>\n\n\n\n<p>With the wildcard certificate generated, we can now configure Nginx.<\/p>\n\n\n\n<p>First, create a new Nginx server block for the main&nbsp;<code>example.com<\/code>&nbsp;domain:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/nginx\/sites-available\/example.com<\/code><\/pre>\n\n\n\n<p>Add the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"nginx\" class=\"language-nginx\"><strong>server<\/strong> {\n        listen80;\n        listen [::]:80;\n\n        server_name example.com;\n\n        return301 https:\/\/$host$request_uri;\n}\n\n<strong>server<\/strong> {\n       listen443 ssl http2;\n       listen [::]:443 ssl http2;\n\n       server_name example.com;\n\n       ssl_certificate \/etc\/letsencrypt\/live\/example.com\/fullchain.pem;\n       ssl_certificate_key \/etc\/letsencrypt\/live\/example.com\/privkey.pem;\n\n       <em># Other SSL config<\/em>\n       ...\n}<\/code><\/pre>\n\n\n\n<p>This configures HTTPS using the Let&#8217;s Encrypt certificate and redirects HTTP traffic to HTTPS.<\/p>\n\n\n\n<p>Next, create a server block for the wildcard subdomain&nbsp;<code>*.example.com<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nano \/etc\/nginx\/sites-available\/wildcard.example.com<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"nginx\" class=\"language-nginx\"><strong>server<\/strong> {\n  listen80;\n  listen [::]:80;\n\n  server_name*.example.com;\n\n  return301 https:\/\/$host$request_uri;  \n}\n\n<strong>server<\/strong> {\n\n  listen443 ssl http2;\n  listen [::]:443 ssl http2;\n\t\n  server_name*.example.com;\n\n  ssl_certificate \/etc\/letsencrypt\/live\/example.com\/fullchain.pem;\n  ssl_certificate_key \/etc\/letsencrypt\/live\/example.com\/privkey.pem;\n\n  <em># Other SSL config<\/em>\n  ...\n}<\/code><\/pre>\n\n\n\n<p>This wil handle all subdomains using the same wildcard certificate.<\/p>\n\n\n\n<p>Activate the server blocks:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo ln -s \/etc\/nginx\/sites-available\/example.com \/etc\/nginx\/sites-enabled\/\n$ sudo ln -s \/etc\/nginx\/sites-available\/wildcard.example.com \/etc\/nginx\/sites-enabled\/<\/code><\/pre>\n\n\n\n<p>Finally, test the Nginx configuration and reload it if successful:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo nginx -t\n$ sudo systemctl reload nginx<\/code><\/pre>\n\n\n\n<p>Your wildcard certificate should now be working! Try accessing your site over HTTPS and various subdomains to confirm.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"automating-renewal\">Automating Renewal<\/h2>\n\n\n\n<p>Let&#8217;s Encrypt certificates expire after 90 days, so you&#8217;ll need to renew them regularly.<\/p>\n\n\n\n<p>You can automate renewal using Certbot&#8217;s&nbsp;<code>renew<\/code>&nbsp;command. Create a cron job to run daily:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo crontab -e<\/code><\/pre>\n\n\n\n<p>Add this line which will run Certbot daily and renew if certificates are expiring in less than 30 days:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">0 0 * * * \/usr\/bin\/certbot renew --quiet --post-hook \"systemctl reload nginx\"<\/code><\/pre>\n\n\n\n<p>This will renew your certificates automatically before they expire!<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conclusion\">Conclusion<\/h2>\n\n\n\n<p>That&#8217;s it! You should now have Let&#8217;s Encrypt wildcard certificates issued by Certbot set up for your domain. This allows you to enable HTTPS across your main domain and any subdomains with just a single certificate.<\/p>\n\n\n\n<p>The certificates will renew automatically, providing ongoing HTTPS protection for your site. This offers your visitors security, trust, and SEO benefits.<\/p>\n\n\n\n<p>As Let&#8217;s Encrypt issues trusted certificates for free, there&#8217;s no reason not to use HTTPS everywhere with wildcard certificates. Enjoy your secured site!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Let&#8217;s Encrypt is a free, automated, and open certificate authority (CA) that provides SSL\/TLS certificates for enabling HTTPS on your website. Let&#8217;s Encrypt wildcard certificates allow you to secure unlimited subdomains under a base domain (e.g. *.example.com). In this tutorial, we will show you how to use Certbot to generate Let&#8217;s Encrypt wildcard certificates and ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/\" 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":[2,4],"tags":[],"yoast_head":"\n<title>Create Let&#039;s Encrypt Wildcard Certificates in NGINX - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"Learn how to use Certbot to easily generate free Let&#039;s Encrypt wildcard SSL certificates for your domains and subdomains and set up HTTPS on your website.\" \/>\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\/generate-lets-encrypt-wildcard-certificates-nginx\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Create Let&#039;s Encrypt Wildcard Certificates in NGINX - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"Learn how to use Certbot to easily generate free Let&#039;s Encrypt wildcard SSL certificates for your domains and subdomains and set up HTTPS on your website.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/\" \/>\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=\"2023-07-18T16:44:07+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-07-18T16:44:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/07\/certbot_lets_ubuntu_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=\"4 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\/generate-lets-encrypt-wildcard-certificates-nginx\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"Create Let&#8217;s Encrypt Wildcard Certificates in NGINX\",\"datePublished\":\"2023-07-18T16:44:07+00:00\",\"dateModified\":\"2023-07-18T16:44:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/\"},\"wordCount\":546,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#organization\"},\"articleSection\":[\"SSL Certificate\",\"Web servers\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/\",\"name\":\"Create Let's Encrypt Wildcard Certificates in NGINX - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-07-18T16:44:07+00:00\",\"dateModified\":\"2023-07-18T16:44:09+00:00\",\"description\":\"Learn how to use Certbot to easily generate free Let's Encrypt wildcard SSL certificates for your domains and subdomains and set up HTTPS on your website.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Create Let&#8217;s Encrypt Wildcard Certificates in NGINX\"}]},{\"@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":"Create Let's Encrypt Wildcard Certificates in NGINX - WebHi Tutorials &amp; Documentations","description":"Learn how to use Certbot to easily generate free Let's Encrypt wildcard SSL certificates for your domains and subdomains and set up HTTPS on your website.","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\/generate-lets-encrypt-wildcard-certificates-nginx\/","og_locale":"en_US","og_type":"article","og_title":"Create Let's Encrypt Wildcard Certificates in NGINX - WebHi Tutorials &amp; Documentations","og_description":"Learn how to use Certbot to easily generate free Let's Encrypt wildcard SSL certificates for your domains and subdomains and set up HTTPS on your website.","og_url":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-07-18T16:44:07+00:00","article_modified_time":"2023-07-18T16:44:09+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/07\/certbot_lets_ubuntu_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"Create Let&#8217;s Encrypt Wildcard Certificates in NGINX","datePublished":"2023-07-18T16:44:07+00:00","dateModified":"2023-07-18T16:44:09+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/"},"wordCount":546,"commentCount":2,"publisher":{"@id":"https:\/\/www.webhi.com\/how-to\/#organization"},"articleSection":["SSL Certificate","Web servers"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/","url":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/","name":"Create Let's Encrypt Wildcard Certificates in NGINX - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-07-18T16:44:07+00:00","dateModified":"2023-07-18T16:44:09+00:00","description":"Learn how to use Certbot to easily generate free Let's Encrypt wildcard SSL certificates for your domains and subdomains and set up HTTPS on your website.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/generate-lets-encrypt-wildcard-certificates-nginx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"Create Let&#8217;s Encrypt Wildcard Certificates in NGINX"}]},{"@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\/6009"}],"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=6009"}],"version-history":[{"count":5,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/6009\/revisions"}],"predecessor-version":[{"id":6030,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/6009\/revisions\/6030"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=6009"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=6009"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=6009"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}