{"id":130,"date":"2023-03-01T12:33:15","date_gmt":"2023-03-01T12:33:15","guid":{"rendered":"https:\/\/certerassl.com\/kb\/?p=130"},"modified":"2024-10-16T10:20:29","modified_gmt":"2024-10-16T10:20:29","slug":"how-to-install-ssl-certificate-on-nginx","status":"publish","type":"post","link":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/","title":{"rendered":"How to Install SSL Certificate on NGINX?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Installing an SSL certificate on your NGINX web server is a great way to secure your website &amp; improve the trustworthiness of your online presence. This guide will provide step-by-step instructions on installing an SSL certificate on your NGINX web server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Prerequisites for Installing SSL Certificate on NGINX<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>NGINX is installed on your system.<\/li>\n\n\n\n<li>Server certificate issued by a Certificate Authority<\/li>\n\n\n\n<li>A user account with sudo privileges<\/li>\n\n\n\n<li>Intermediate certificates<\/li>\n\n\n\n<li>Generated CSR for NGINX<\/li>\n\n\n\n<li>Your private key<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Before Installation, you need to <a href=\"https:\/\/certera.com\/kb\/how-to-generate-csr-in-nginx\/\">follow the CSR Generation process in Nginx<\/a><\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">SSL Certificate Installation Steps on NGINX<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Step 1: Combine All Certificates into a Single File<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The Certificate Authority will provide you the SSL through a Zip folder containing a primary certificate and root &amp; intermediate certificate. You have to merge all three files into a single document.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>To do this manually<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Ppen a text editor.<\/li>\n\n\n\n<li>Rename it to <strong>ssl-bundle.crt<\/strong>.<\/li>\n\n\n\n<li>Copy\/paste the encrypted content of each file.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>You can make this process a little easy using the command-line:<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Run this command if the intermediate certificates are in a single bundle.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat your_domain.crt your_domain.ca-bundle &gt;&gt; ssl-bundle.crt<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Run this command if all three certificates are listed separately.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cat your_domain.crt intermediate.crt root.crt &gt;&gt; ssl-bundle.crt<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 2: Edit NGINX Configuration File<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Now, it&#8217;s time to set up the virtual host file on your machine, it is the NGINX server block that sets up the configuration of your domain. <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Open the virtual host file with a text editor; if you don\u2019t know the location it run &#8216;<strong><em>sudo find nginx.conf<\/em><\/strong>&#8216; command and make the following changes to configure your virtual host file.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>listen 443; to specify that the NGINX should listen to port 443<\/li>\n\n\n\n<li>ssl on;<\/li>\n\n\n\n<li>ssl_certificate \/etc\/ssl\/ssl-bundle.crt; to define the path of the SSL certificate.<\/li>\n\n\n\n<li>\/path\/to\/your_private.key; to specify the directory where the SSL Certificate Key is located.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The Virtual Host file will look like this.<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>server {\nlisten 443;\nssl on;\nssl_certificate \/etc\/ssl\/ssl-bundle.crt;\nssl_certificate_key \/path\/to\/your_private.key;\nroot \/path\/to\/webroot;\nserver_name your_domain.com;\n}\naccess_log \/var\/log\/nginx\/nginx.vhost.access.log;\nerror_log \/var\/log\/nginx\/nginx.vhost.error.log;\nlocation \/\n{\nroot \/var\/www\/;\nroot  \/home\/www\/public_html\/your.domain.com\/public\/;\nindex index.html;\n}\n}\n<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Save and exit the file and restart NGINX Server. Simply run the command:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo systemctl restart nginx<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Step 3: Verify SSL Certificate Installation<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The Final step is to verify the SSL Installation, open a web browser and enter your domain name in the address bar. If you see a padlock and HTTPS in the URL bar, it indicates the SSL is installed perfectly.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Or use our <a href=\"https:\/\/certera.com\/ssl-tools\/ssl-checker\">Free SSL Checker tool<\/a> to ensure the SSL is installed correctly!<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Troubleshooting Tips<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you have trouble with your SSL Certificate installation, please check the following points:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Make sure all certificates are in the correct order.<\/li>\n\n\n\n<li>Make sure that the private key matches up with the server certificate.<\/li>\n\n\n\n<li>Check if there is a problem with an intermediate certificate.<\/li>\n\n\n\n<li>Verify that all files have been uploaded correctly to the server and that you are accessing them from the correct directory.<\/li>\n\n\n\n<li>If possible, try reinstalling or replacing your SSL Certificate.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Installing an SSL certificate on your NGINX web server is a great way to secure your website &amp; improve the trustworthiness of your online presence. This guide will provide step-by-step instructions on installing an SSL certificate on your NGINX web server. The Prerequisites for Installing SSL Certificate on NGINX Before Installation, you need to follow<span class=\"morelink d-block mt-3\"><a href=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/\">Read More<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":1108,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[15],"tags":[29,18,19],"class_list":["post-130","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-ssl-installation","tag-nginx","tag-ssl","tag-ssl-installation","entry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to install SSL Certificate on NGINX Server Quickly<\/title>\n<meta name=\"description\" content=\"Quick and Easy step-by-step process to install SSL Certificate on NGINX Server within minutes, Enable SSL on your NGINX Web Server.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to install SSL Certificate on NGINX Server Quickly\" \/>\n<meta property=\"og:description\" content=\"Quick and Easy step-by-step process to install SSL Certificate on NGINX Server within minutes, Enable SSL on your NGINX Web Server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - Certera.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/certeraLLC\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-03-01T12:33:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-10-16T10:20:29+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nginx-1-jpg.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"620\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"certerakbdbuser\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nginx-1-jpg.webp\" \/>\n<meta name=\"twitter:creator\" content=\"@certera_llc\" \/>\n<meta name=\"twitter:site\" content=\"@certera_llc\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"certerakbdbuser\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/\"},\"author\":{\"name\":\"certerakbdbuser\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\"},\"headline\":\"How to Install SSL Certificate on NGINX?\",\"datePublished\":\"2023-03-01T12:33:15+00:00\",\"dateModified\":\"2024-10-16T10:20:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/\"},\"wordCount\":462,\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-ssl-certificate-on-nginx-1-jpg.webp\",\"keywords\":[\"NGINX\",\"SSL\",\"SSL Installation\"],\"articleSection\":[\"SSL Installation\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/\",\"name\":\"How to install SSL Certificate on NGINX Server Quickly\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-ssl-certificate-on-nginx-1-jpg.webp\",\"datePublished\":\"2023-03-01T12:33:15+00:00\",\"dateModified\":\"2024-10-16T10:20:29+00:00\",\"description\":\"Quick and Easy step-by-step process to install SSL Certificate on NGINX Server within minutes, Enable SSL on your NGINX Web Server.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/#primaryimage\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-ssl-certificate-on-nginx-1-jpg.webp\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/install-ssl-certificate-on-nginx-1-jpg.webp\",\"width\":960,\"height\":620,\"caption\":\"Install SSL On Nginx\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/how-to-install-ssl-certificate-on-nginx\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/certera.com\\\/kb\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install SSL Certificate on NGINX?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/\",\"name\":\"Knowledge Base - Certera.com\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\"},\"alternateName\":\"Certera Knowledgebase\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/certera.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#organization\",\"name\":\"Certera\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/brand-certera.svg\",\"contentUrl\":\"https:\\\/\\\/certera.com\\\/kb\\\/wp-content\\\/uploads\\\/2023\\\/01\\\/brand-certera.svg\",\"caption\":\"Certera\"},\"image\":{\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/certeraLLC\\\/\",\"https:\\\/\\\/x.com\\\/certera_llc\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/certera-llc\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/certera.com\\\/kb\\\/#\\\/schema\\\/person\\\/c25e1519e333a817f30c805384cba014\",\"name\":\"certerakbdbuser\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g\",\"caption\":\"certerakbdbuser\"},\"sameAs\":[\"https:\\\/\\\/certerakb.ssltoolsonline.com\"],\"url\":\"https:\\\/\\\/certera.com\\\/kb\\\/author\\\/certerakbdbuser\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to install SSL Certificate on NGINX Server Quickly","description":"Quick and Easy step-by-step process to install SSL Certificate on NGINX Server within minutes, Enable SSL on your NGINX Web Server.","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:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/","og_locale":"en_US","og_type":"article","og_title":"How to install SSL Certificate on NGINX Server Quickly","og_description":"Quick and Easy step-by-step process to install SSL Certificate on NGINX Server within minutes, Enable SSL on your NGINX Web Server.","og_url":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/","og_site_name":"Knowledge Base - Certera.com","article_publisher":"https:\/\/www.facebook.com\/certeraLLC\/","article_published_time":"2023-03-01T12:33:15+00:00","article_modified_time":"2024-10-16T10:20:29+00:00","og_image":[{"width":960,"height":620,"url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nginx-1-jpg.webp","type":"image\/jpeg"}],"author":"certerakbdbuser","twitter_card":"summary_large_image","twitter_image":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nginx-1-jpg.webp","twitter_creator":"@certera_llc","twitter_site":"@certera_llc","twitter_misc":{"Written by":"certerakbdbuser","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/#article","isPartOf":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/"},"author":{"name":"certerakbdbuser","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014"},"headline":"How to Install SSL Certificate on NGINX?","datePublished":"2023-03-01T12:33:15+00:00","dateModified":"2024-10-16T10:20:29+00:00","mainEntityOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/"},"wordCount":462,"publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nginx-1-jpg.webp","keywords":["NGINX","SSL","SSL Installation"],"articleSection":["SSL Installation"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/","url":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/","name":"How to install SSL Certificate on NGINX Server Quickly","isPartOf":{"@id":"https:\/\/certera.com\/kb\/#website"},"primaryImageOfPage":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/#primaryimage"},"image":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/#primaryimage"},"thumbnailUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nginx-1-jpg.webp","datePublished":"2023-03-01T12:33:15+00:00","dateModified":"2024-10-16T10:20:29+00:00","description":"Quick and Easy step-by-step process to install SSL Certificate on NGINX Server within minutes, Enable SSL on your NGINX Web Server.","breadcrumb":{"@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/#primaryimage","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nginx-1-jpg.webp","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/03\/install-ssl-certificate-on-nginx-1-jpg.webp","width":960,"height":620,"caption":"Install SSL On Nginx"},{"@type":"BreadcrumbList","@id":"https:\/\/certera.com\/kb\/how-to-install-ssl-certificate-on-nginx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/certera.com\/kb\/"},{"@type":"ListItem","position":2,"name":"How to Install SSL Certificate on NGINX?"}]},{"@type":"WebSite","@id":"https:\/\/certera.com\/kb\/#website","url":"https:\/\/certera.com\/kb\/","name":"Knowledge Base - Certera.com","description":"","publisher":{"@id":"https:\/\/certera.com\/kb\/#organization"},"alternateName":"Certera Knowledgebase","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/certera.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/certera.com\/kb\/#organization","name":"Certera","url":"https:\/\/certera.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/certera.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/01\/brand-certera.svg","contentUrl":"https:\/\/certera.com\/kb\/wp-content\/uploads\/2023\/01\/brand-certera.svg","caption":"Certera"},"image":{"@id":"https:\/\/certera.com\/kb\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/certeraLLC\/","https:\/\/x.com\/certera_llc","https:\/\/www.linkedin.com\/company\/certera-llc\/"]},{"@type":"Person","@id":"https:\/\/certera.com\/kb\/#\/schema\/person\/c25e1519e333a817f30c805384cba014","name":"certerakbdbuser","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1fba817ef81065f1393461fc3a0d85c40f2cc826919819ea4df4b12d76566e62?s=96&d=mm&r=g","caption":"certerakbdbuser"},"sameAs":["https:\/\/certerakb.ssltoolsonline.com"],"url":"https:\/\/certera.com\/kb\/author\/certerakbdbuser\/"}]}},"_links":{"self":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/130","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/comments?post=130"}],"version-history":[{"count":16,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/130\/revisions"}],"predecessor-version":[{"id":2639,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/posts\/130\/revisions\/2639"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media\/1108"}],"wp:attachment":[{"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/media?parent=130"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/categories?post=130"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/certera.com\/kb\/wp-json\/wp\/v2\/tags?post=130"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}