{"id":1380,"date":"2020-03-02T11:56:42","date_gmt":"2020-03-02T11:56:42","guid":{"rendered":"https:\/\/sectigostore.com\/page\/?p=1380"},"modified":"2020-08-24T10:39:07","modified_gmt":"2020-08-24T10:39:07","slug":"install-wildcard-certificate-on-nginx-server","status":"publish","type":"post","link":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/","title":{"rendered":"How to Install a Wildcard Certificate on an Nginx Server"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><strong>Your step-by-step guide for installing a wildcard certificate on your Nginx server<\/strong><\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">If your search for a how-to guide for installing a <a href=\"https:\/\/sectigostore.com\/ssl-types\/wildcard-ssl-certificates\">wildcard certificate<\/a> on the Nginx server led you here, then you\u2019ve come to the right place! Many people find themselves here when looking for directions on how to install an \u201cNginx wildcard certificate\u201d or \u201cNginx wildcard SSL.\u201d In reality, what they\u2019re really looking for is what you\u2019re looking for \u2014 info on how to install a wildcard certificate on Nginx. From generating the CSR to installing the wildcard SSL on your Nginx server, we\u2019ve got you covered. (If you\u2019re specifically looking to <a href=\"https:\/\/sectigostore.com\/page\/how-to-install-a-sectigo-ssl-certificate-on-nginx\/\">install a Sectigo SSL certificate on Nginx<\/a>, we\u2019ve also got you covered with another article that details how to do that!)<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you haven\u2019t already purchased a certificate, we have some <a href=\"https:\/\/sectigostore.com\/ssl-types\/wildcard-ssl-certificates\">great deals on wildcard certificates<\/a> for you to check out.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>How to Generate a CSR on Nginx<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Before you can install an Nginx wildcard certificate,\nyou first need to know how to create a certificate signing request, or what\u2019s\nknown as a CSR.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">A CSR needs to be completed and submitted\nto the certificate authority (CA) for your certificate request to be validated\nand for the CA to issue your wildcard SSL cert. In this section, we\u2019ll take a\nlook at how to generate the CSR and obtain the wildcard certificate on Nginx.\nIf you\u2019ve already created a CSR on your server, skip over to the next part\nwhere we talk about installing wildcard SSL on Nginx.<\/p>\n\n\n\n<div class=\"graysection\"><h2>Secure Unlimited Subdomains with One Wildcard SSL Certificate \u2013 Save 50%<\/h2>\n<p><strong>Save 50%<\/strong> on Sectigo Wildcard SSL Certificates. It includes unlimited server licenses, reissuances, 256-bit encryption, and more.<\/p>\n<p><a class=\"greenbutton\" style=\"text-decoration: none;\" href=\"https:\/\/sectigostore.com\/ssl-types\/wildcard-ssl-certificates\">Shop for Wildcard SSL and Save 50%<\/a><\/p>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Connect to Your Nginx Server<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Connect to your server via SSH, using an SSH client like Putty, and log in as a privileged user (such as root account).<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"449\" height=\"434\" src=\"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty.png\" alt=\"\" class=\"wp-image-1381\" srcset=\"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty.png 449w, https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty-300x290.png 300w\" sizes=\"auto, (max-width: 449px) 100vw, 449px\" \/><\/figure><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Run the Following Code in Your Terminal<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Once the connection is established and you have access to the terminal window, enter the following:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>openssl req \u2013new \u2013newkey rsa:2048 \u2013nodes \u2013keyout (server).key \u2013out (server).csr<\/p><\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Note: Rename the \u201cserver\u201d based upon what you wish to call your CSR and private key.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">You will be prompted to enter some additional details. Enter the hostname or FQDN for your wildcard cert correctly (should look something like *.mysite.com). Ensure that all the specifics are filled-in accurately as a failure to do so will require you to generate a new request. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Access the CSR<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Once the information is filled, the server will generate and store the CSR as well as the private key under the user directory of the account where you\u2019ve signed in. To open the CSR, enter the following command:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>nano (sever).csr<\/p><\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Save the CSR and Share It with Your CA<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Once you\u2019ve opened the CSR using any text editor, copy the entire contents of the file including the following, before sharing it with the CA:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>&#8212;&#8212;BEGIN CERTIFICATE REQUEST&#8212;&#8212;<\/p><p>And<\/p><p>&#8212;&#8212;END CERTIFICATE REQUEST&#8212;&#8212;<\/p><\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Once the CSR is generated and submitted,\nthe CA will review your request and issue the wildcard certificate. Yes, it\u2019s\nreally that easy!<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Now that we have the CSR generation\ninstructions out of the way, we can move on to the main event. Here\u2019s what you\nneed to know about how to install a wildcard certificate on Nginx. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Installing a Wildcard Certificate on Nginx in 5 Simple Steps<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Once the CA has shared the certificate files with you, it\u2019s time to install them on your server! The steps below detail the installation process. We also will take a look at the configurations that need to be tweaked in order to get HTTPS up and running.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step One: Connect to the Server<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Connect to your Nginx server (from which you generated the CSR) via FTP or SSH using a privileged account.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step Two: Copy All of the Certificate Files<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Copy all the files in the certificate package that was shared by the CA and place them in the appropriate directories. It\u2019s recommended to store them under the \u201c\/etc\/ssl\u201d directory on your server. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step Three: Combine the Primary and Intermediate Certificates <\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For the next step, run the following command to concatenate your primary and intermediate certificates:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>cat your_domain_name.crt intermediate.crt &gt;&gt; bundle.crt<\/p><\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step Four: Edit the Nginx Virtual Hosts File<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Next, edit your virtual host files to reroute connections through port 443 by adding the code snippet given below in bold:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>server {<br> <br> <strong>listen&nbsp;&nbsp;&nbsp;443;<\/strong><br> <br> <strong>ssl&nbsp;&nbsp;&nbsp;&nbsp;on;<\/strong><br> <strong>ssl_certificate&nbsp;&nbsp;&nbsp;&nbsp;\/etc\/ssl\/your_domain_name.pem; <\/strong>(or bundle.crt)<br> <strong>ssl_certificate_key&nbsp;&nbsp;&nbsp;&nbsp;\/etc\/ssl\/your_domain_name.key;<\/strong><br> <br> server_name your.domain.com;<br> access_log \/var\/log\/nginx\/nginx.vhost.access.log;<br> error_log \/var\/log\/nginx\/nginx.vhost.error.log;<br> location \/ {<br> root&nbsp;&nbsp;&nbsp;\/home\/www\/public_html\/your.domain.com\/public\/;<br> index&nbsp;&nbsp;index.html;<br> }<br> } <\/p><\/blockquote>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Step Five: Restart Nginx.<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Restart your server using the following command:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>sudo \/etc\/init.d\/nginx restart<\/p><\/blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Top NGINX Wildcard SSL Certificate<\/h2>\n\n\n\n<table class=\"product-table\"><tbody><tr><th>\n  <strong>Features<\/strong>\n  <\/th><th>\n  <strong>PositiveSSL Wildcard (DV)<\/strong>\n  <\/th><th>\n  <strong>Sectigo SSL Wildcard Certificate (DV)<\/strong>\n  <\/th>\n  <th>\n  <strong>Sectigo OV Wildcard SSL<\/strong>\n  <\/th>\n  <\/tr>\n    <tr>\n  <td>Lowest Price<\/td>\n  <td>$78.32\/yr<\/td>\n  <td>$199.20\/yr<\/td>\n  <td>$399.20\/yr<\/td>\n  <\/tr>\n  <tr>\n  <td>Domains Secured<\/td>\n  <td>Secure Unlimited Subdomains<\/td>\n  <td>Secure Unlimited Subdomains<\/td>\n  <td>Secure Unlimited Subdomains<\/td>\n  <\/tr>\n  <tr>\n  <td>Validation Level<\/td>\n  <td>Domain Validation<\/td>\n  <td>Domain Validation<\/td>\n <td>Organization Validation<\/td>\n  <\/tr>\n  <tr>\n  <td>SSL Encryption<\/td>\n  <td>up to 256-bit<\/td>\n  <td>up to 256-bit<\/td>\n  <td>up to 256-bit<\/td>\n  <\/tr>\n  <tr>\n  <td>Key Length<\/td>\n  <td>2048 bits<\/td>\n  <td>2048 bits<\/td>\n  <td>2048 bits<\/td>\n  <\/tr>\n  <tr>\n  <td>Server License\/td>\n  <td>Unlimited<\/td>\n  <td>Unlimited<\/td>\n  <td>Unlimited<\/td>\n  <\/tr>\n  <tr>\n  <td>SSL Site Seal<\/td>\n  <td>Included<\/td>\n  <td>Included<\/td>\n  <td>Included<\/td>\n  <\/tr>\n  <tr>\n  <td>Reissue Policy<\/td>\n  <td>Unlimited<\/td>\n  <td>Unlimited<\/td>\n  <td>Unlimited<\/td>\n  <\/tr>\n  <tr>\n  <td>Warranty<\/td>\n  <td>$50,000<\/td>\n  <td>$1,000,000<\/td>\n  <td>$500,000<\/td>\n  <\/tr>\n  <tr>\n  <td>Refund Policy<\/td>\n  <td>30 Days<\/td>\n  <td>30 Days<\/td>\n  <td>30 Days<\/td>\n  <\/tr>\n  <tr>\n  <td>Wildcard Support<\/td>\n  <td>Yes<\/td>\n  <td>Yes<\/td>\n  <td>Yes<\/td>\n  <\/tr>\n  <tr>\n  <td>Browser Support<\/td>\n  <td>99%<\/td>\n  <td>99%<\/td>\n  <td>99%<\/td>\n  <\/tr>\n  <tr>\n  <td>OS Support [Desktop]<\/td>\n  <td>Yes<\/td>\n  <td>Yes<\/td>\n  <td>Yes<\/td>\n  <\/tr>\n  <tr>\n  <td>OS Support [Mobile]<\/td>\n  <td>Yes<\/td>\n  <td>Yes<\/td>\n  <td>Yes<\/td>\n  <\/tr>\n   <tr><td>\n  <strong>Buy Now<\/strong>\n  <\/td><td>\n  <a class=\"button\" href=\"https:\/\/sectigostore.com\/ssl-certificates\/positivessl-wildcard\"><strong>View Product<\/strong><\/a>\n  <\/td><td>\n  <a class=\"button\" href=\"https:\/\/sectigostore.com\/ssl-certificates\/sectigo-wildcard-ssl\"><strong>View Product<\/strong><\/a>\n  <\/td>\n  <td>\n  <a class=\"button\" href=\"https:\/\/sectigostore.com\/ssl-certificates\/sectigo-ov-wildcard-ssl\"><strong>View Product<\/strong><\/a>\n  <\/td>\n  <\/tr><\/tbody><\/table>\n\n\n\n<a class=\"greenbutton\" style=\"text-decoration: none;\" href=\"https:\/\/sectigostore.com\/page\/ssl-certificate-for-subdomains\/\">SSL Certificate for Subdomain \u2013 How Do I Get One for My Website? <\/a>\n","protected":false},"excerpt":{"rendered":"<p>Your step-by-step guide for installing a wildcard certificate on your Nginx server If your search for a how-to guide for installing a wildcard certificate on the Nginx server led you here, then you\u2019ve come to the right place! Many people find themselves here when looking for directions on how to install an \u201cNginx wildcard certificate\u201d or \u201cNginx wildcard SSL.\u201d In reality, what they\u2019re really looking for is what you\u2019re looking for \u2014 info on how to install a wildcard certificate on Nginx. From generating the CSR to installing the wildcard <a href=\"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/\" class=\"more-link\">Continue Reading<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[39],"tags":[],"class_list":["post-1380","post","type-post","status-publish","format-standard","hentry","category-advance-ssl"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install a Wildcard Certificate on an Nginx Server<\/title>\n<meta name=\"description\" content=\"Steps to install a wildcard certificate on an Nginx server. We build quick guide to resolve and install your certificate on an Nginx server. Read now!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-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 a Wildcard Certificate on an Nginx Server\" \/>\n<meta property=\"og:description\" content=\"Steps to install a wildcard certificate on an Nginx server. We build quick guide to resolve and install your certificate on an Nginx server. Read now!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/\" \/>\n<meta property=\"og:site_name\" content=\"SectigoStore\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/sectigostore\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-02T11:56:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-08-24T10:39:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty.png\" \/>\n<meta name=\"author\" content=\"sectigostorepages\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@sectigostore\" \/>\n<meta name=\"twitter:site\" content=\"@sectigostore\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"sectigostorepages\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/\"},\"author\":{\"name\":\"sectigostorepages\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#\\\/schema\\\/person\\\/f38f303abd42ade13a74a5d3c12b1cec\"},\"headline\":\"How to Install a Wildcard Certificate on an Nginx Server\",\"datePublished\":\"2020-03-02T11:56:42+00:00\",\"dateModified\":\"2020-08-24T10:39:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/\"},\"wordCount\":979,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/connecting-server-via-putty.png\",\"articleSection\":[\"Advanced SSL\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/\",\"url\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/\",\"name\":\"How to Install a Wildcard Certificate on an Nginx Server\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/connecting-server-via-putty.png\",\"datePublished\":\"2020-03-02T11:56:42+00:00\",\"dateModified\":\"2020-08-24T10:39:07+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#\\\/schema\\\/person\\\/f38f303abd42ade13a74a5d3c12b1cec\"},\"description\":\"Steps to install a wildcard certificate on an Nginx server. We build quick guide to resolve and install your certificate on an Nginx server. Read now!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/#primaryimage\",\"url\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/connecting-server-via-putty.png\",\"contentUrl\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/wp-content\\\/uploads\\\/2020\\\/03\\\/connecting-server-via-putty.png\",\"width\":449,\"height\":434},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/install-wildcard-certificate-on-nginx-server\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"SSL Resources\",\"item\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Advanced SSL\",\"item\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/advance-ssl\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"How to Install a Wildcard Certificate on an Nginx Server\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#website\",\"url\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/\",\"name\":\"SectigoStore\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/#\\\/schema\\\/person\\\/f38f303abd42ade13a74a5d3c12b1cec\",\"name\":\"sectigostorepages\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/78239165ecb118435d2709ba4dd124dd9151b1f6b069f87258c6514fe3728c7e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/78239165ecb118435d2709ba4dd124dd9151b1f6b069f87258c6514fe3728c7e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/78239165ecb118435d2709ba4dd124dd9151b1f6b069f87258c6514fe3728c7e?s=96&d=mm&r=g\",\"caption\":\"sectigostorepages\"},\"url\":\"https:\\\/\\\/sectigostore.com\\\/page\\\/author\\\/sectigostorepages\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install a Wildcard Certificate on an Nginx Server","description":"Steps to install a wildcard certificate on an Nginx server. We build quick guide to resolve and install your certificate on an Nginx server. Read now!","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:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Install a Wildcard Certificate on an Nginx Server","og_description":"Steps to install a wildcard certificate on an Nginx server. We build quick guide to resolve and install your certificate on an Nginx server. Read now!","og_url":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/","og_site_name":"SectigoStore","article_publisher":"https:\/\/www.facebook.com\/sectigostore\/","article_published_time":"2020-03-02T11:56:42+00:00","article_modified_time":"2020-08-24T10:39:07+00:00","og_image":[{"url":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty.png","type":"","width":"","height":""}],"author":"sectigostorepages","twitter_card":"summary_large_image","twitter_creator":"@sectigostore","twitter_site":"@sectigostore","twitter_misc":{"Written by":"sectigostorepages","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/#article","isPartOf":{"@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/"},"author":{"name":"sectigostorepages","@id":"https:\/\/sectigostore.com\/page\/#\/schema\/person\/f38f303abd42ade13a74a5d3c12b1cec"},"headline":"How to Install a Wildcard Certificate on an Nginx Server","datePublished":"2020-03-02T11:56:42+00:00","dateModified":"2020-08-24T10:39:07+00:00","mainEntityOfPage":{"@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/"},"wordCount":979,"commentCount":0,"image":{"@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/#primaryimage"},"thumbnailUrl":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty.png","articleSection":["Advanced SSL"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/","url":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/","name":"How to Install a Wildcard Certificate on an Nginx Server","isPartOf":{"@id":"https:\/\/sectigostore.com\/page\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/#primaryimage"},"image":{"@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/#primaryimage"},"thumbnailUrl":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty.png","datePublished":"2020-03-02T11:56:42+00:00","dateModified":"2020-08-24T10:39:07+00:00","author":{"@id":"https:\/\/sectigostore.com\/page\/#\/schema\/person\/f38f303abd42ade13a74a5d3c12b1cec"},"description":"Steps to install a wildcard certificate on an Nginx server. We build quick guide to resolve and install your certificate on an Nginx server. Read now!","breadcrumb":{"@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/#primaryimage","url":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty.png","contentUrl":"https:\/\/sectigostore.com\/page\/wp-content\/uploads\/2020\/03\/connecting-server-via-putty.png","width":449,"height":434},{"@type":"BreadcrumbList","@id":"https:\/\/sectigostore.com\/page\/install-wildcard-certificate-on-nginx-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"SSL Resources","item":"https:\/\/sectigostore.com\/page\/"},{"@type":"ListItem","position":2,"name":"Advanced SSL","item":"https:\/\/sectigostore.com\/page\/advance-ssl\/"},{"@type":"ListItem","position":3,"name":"How to Install a Wildcard Certificate on an Nginx Server"}]},{"@type":"WebSite","@id":"https:\/\/sectigostore.com\/page\/#website","url":"https:\/\/sectigostore.com\/page\/","name":"SectigoStore","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sectigostore.com\/page\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/sectigostore.com\/page\/#\/schema\/person\/f38f303abd42ade13a74a5d3c12b1cec","name":"sectigostorepages","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/78239165ecb118435d2709ba4dd124dd9151b1f6b069f87258c6514fe3728c7e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/78239165ecb118435d2709ba4dd124dd9151b1f6b069f87258c6514fe3728c7e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/78239165ecb118435d2709ba4dd124dd9151b1f6b069f87258c6514fe3728c7e?s=96&d=mm&r=g","caption":"sectigostorepages"},"url":"https:\/\/sectigostore.com\/page\/author\/sectigostorepages\/"}]}},"_links":{"self":[{"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/posts\/1380","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/comments?post=1380"}],"version-history":[{"count":0,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/posts\/1380\/revisions"}],"wp:attachment":[{"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/media?parent=1380"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/categories?post=1380"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sectigostore.com\/page\/wp-json\/wp\/v2\/tags?post=1380"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}