{"id":4469,"date":"2023-04-01T01:50:35","date_gmt":"2023-04-01T01:50:35","guid":{"rendered":"https:\/\/www.webhi.com\/how-to\/?p=4469"},"modified":"2023-04-01T01:50:40","modified_gmt":"2023-04-01T01:50:40","slug":"how-to-install-ssl-certificate-on-nginx-server","status":"publish","type":"post","link":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/","title":{"rendered":"How to Install SSL Certificate on NGINX 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\/2023\/03\/nginx_ssl_ubuntu_en.jpg\" alt=\"setup SSL self-signed Certificate NGINX Server \" class=\"wp-image-4520\" srcset=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/03\/nginx_ssl_ubuntu_en.jpg 1200w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/03\/nginx_ssl_ubuntu_en-300x169.jpg 300w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/03\/nginx_ssl_ubuntu_en-1024x576.jpg 1024w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/03\/nginx_ssl_ubuntu_en-768x432.jpg 768w, https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/03\/nginx_ssl_ubuntu_en-150x84.jpg 150w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" \/><\/figure>\n\n\n\n<p>If you want to secure your website and improve its security, you need to install an SSL certificate on your NGINX server. In this guide, we will walk you through the process of installing an SSL certificate on NGINX server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Generate a private key and a certificate signing request (CSR).<\/h2>\n\n\n\n<p>To generate a private key and a CSR, you can use the <code>openssl<\/code> command-line tool. Here is an example of how to do it:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\"># Generate a self-signed certificate \nsudo openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">\/path\/to\/your<\/span>\/private.key -out <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">\/path\/to\/your<\/span>\/certificate.crt<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-preformatted\">Country Name (2 letter code) []:\nState or Province Name (full name) []:\nLocality Name (eg, city) []:\nOrganization Name (eg, company) []:\nOrganizational Unit Name (eg, section) []:\nCommon Name (eg, fully qualified host name) []: your_ip_address\nEmail Address []:<\/pre>\n\n\n\n<p>This command generates a self-signed X.509 certificate using OpenSSL. Here is what each option does:<\/p>\n\n\n\n<ul>\n<li><code>req<\/code>: This subcommand specifies that we want to use X.509 certificate signing request (CSR) management.<\/li>\n\n\n\n<li><code>-x509<\/code>: This option specifies that we want to make a self-signed certificate instead of generating a certificate request.<\/li>\n\n\n\n<li><code>-nodes<\/code>: This option specifies that we don&#8217;t want to encrypt the private key.<\/li>\n\n\n\n<li><code>-days 365<\/code>: This option specifies that the certificate will be valid for 365 days.<\/li>\n\n\n\n<li><code>-newkey rsa:2048<\/code>: This option specifies that we want to generate a new RSA key with 2048 bits.<\/li>\n\n\n\n<li><code>-keyout \/path\/to\/your\/private.key<\/code>: This option specifies where to save the private key file.<\/li>\n\n\n\n<li><code>-out \/path\/to\/your\/certificate.crt<\/code>: This option specifies where to save the certificate file.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Obtain an SSL Certificate<\/h2>\n\n\n\n<p>The first step is to obtain an SSL certificate from a trusted Certificate Authority (CA). You can either purchase an SSL certificate from a third-party provider, or you can generate a free SSL certificate using Let&#8217;s Encrypt.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Install NGINX<\/h2>\n\n\n\n<p>You need to have NGINX web server installed on your system. If it is not already installed, you can do so by running the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ sudo apt-get update\n$ sudo apt-get install nginx<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Configure NGINX to Use SSL<\/h2>\n\n\n\n<p>Next, you need to configure NGINX to use SSL. To do so, follow these steps:<\/p>\n\n\n\n<p>Create a new directory for your SSL certificate:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">sudo mkdir \/etc\/nginx\/ssl<\/span><\/code><\/pre>\n\n\n\n<p>Copy your SSL certificate and private key to the new directory:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ s<span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">udo cp \/path\/to\/your\/certificate.crt \/etc\/nginx\/ssl\/ <\/span>\n$ sudo cp \/path\/to\/your\/private.key \/etc\/nginx\/ssl\/<\/code><\/pre>\n\n\n\n<p>Open the NGINX configuration file in a text editor:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">sudo nano \/etc\/nginx\/sites-available\/default<\/span><\/code><\/pre>\n\n\n\n<p>Add the following lines to the file, inside the <code>server<\/code> block:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"nginx\" class=\"language-nginx\">listen 443 ssl;<br>ssl_certificate \/etc\/nginx\/ssl\/certificate.crt;<br>ssl_certificate_key \/etc\/nginx\/ssl\/private.key;<\/code><\/pre>\n\n\n\n<p>Save and close the file.<\/p>\n\n\n\n<p>Test the NGINX configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">sudo nginx -t<\/span><\/code><\/pre>\n\n\n\n<p>If there are no errors, reload NGINX:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code lang=\"bash\" class=\"language-bash\">$ <span style=\"background-color: initial; font-family: inherit; font-size: inherit;\">sudo service nginx reload<\/span><\/code><\/pre>\n\n\n\n<p>That&#8217;s it! Your NGINX server is now configured to use SSL. You can test it by visiting your website using HTTPS protocol (<a href=\"https:\/\/yourwebsite.com\/\">https:\/\/yourwebsite.com<\/a>).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you want to secure your website and improve its security, you need to install an SSL certificate on your NGINX server. In this guide, we will walk you through the process of installing an SSL certificate on NGINX server. Step 1: Generate a private key and a certificate signing request (CSR). To generate a ..<\/p>\n<div class=\"clear-fix\"><\/div>\n<p><a href=\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-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":[2,4],"tags":[],"yoast_head":"\n<title>How to Install SSL Certificate on NGINX Server - WebHi Tutorials &amp; Documentations<\/title>\n<meta name=\"description\" content=\"In this article, we will guide you through the process of installing an SSL certificate on an NGINX server, ensuring a secure connection for your website visitors.\" \/>\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-ssl-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 SSL Certificate on NGINX Server - WebHi Tutorials &amp; Documentations\" \/>\n<meta property=\"og:description\" content=\"In this article, we will guide you through the process of installing an SSL certificate on an NGINX server, ensuring a secure connection for your website visitors.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-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=\"2023-04-01T01:50:35+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-04-01T01:50:40+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/03\/nginx_ssl_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=\"2 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-ssl-certificate-on-nginx-server\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/\"},\"author\":{\"name\":\"webhi\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54\"},\"headline\":\"How to Install SSL Certificate on NGINX Server\",\"datePublished\":\"2023-04-01T01:50:35+00:00\",\"dateModified\":\"2023-04-01T01:50:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/\"},\"wordCount\":356,\"commentCount\":0,\"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\/how-to-install-ssl-certificate-on-nginx-server\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/\",\"url\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/\",\"name\":\"How to Install SSL Certificate on NGINX Server - WebHi Tutorials &amp; Documentations\",\"isPartOf\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/#website\"},\"datePublished\":\"2023-04-01T01:50:35+00:00\",\"dateModified\":\"2023-04-01T01:50:40+00:00\",\"description\":\"In this article, we will guide you through the process of installing an SSL certificate on an NGINX server, ensuring a secure connection for your website visitors.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.webhi.com\/how-to\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install SSL Certificate on NGINX 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=1784239260\",\"contentUrl\":\"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1784239260\",\"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 SSL Certificate on NGINX Server - WebHi Tutorials &amp; Documentations","description":"In this article, we will guide you through the process of installing an SSL certificate on an NGINX server, ensuring a secure connection for your website visitors.","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-ssl-certificate-on-nginx-server\/","og_locale":"en_US","og_type":"article","og_title":"How to Install SSL Certificate on NGINX Server - WebHi Tutorials &amp; Documentations","og_description":"In this article, we will guide you through the process of installing an SSL certificate on an NGINX server, ensuring a secure connection for your website visitors.","og_url":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/","og_site_name":"WebHi Tutorials &amp; Documentations","article_publisher":"https:\/\/www.facebook.com\/webhi.technology","article_published_time":"2023-04-01T01:50:35+00:00","article_modified_time":"2023-04-01T01:50:40+00:00","og_image":[{"url":"https:\/\/www.webhi.com\/how-to\/gilrogre\/2023\/03\/nginx_ssl_ubuntu_en.jpg"}],"author":"webhi","twitter_card":"summary_large_image","twitter_creator":"@WebHiTechnology","twitter_site":"@WebHiTechnology","twitter_misc":{"Written by":"webhi","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/#article","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/"},"author":{"name":"webhi","@id":"https:\/\/www.webhi.com\/how-to\/#\/schema\/person\/b31e76e2311cdc0bb90f5e2733059a54"},"headline":"How to Install SSL Certificate on NGINX Server","datePublished":"2023-04-01T01:50:35+00:00","dateModified":"2023-04-01T01:50:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/"},"wordCount":356,"commentCount":0,"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\/how-to-install-ssl-certificate-on-nginx-server\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/","url":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/","name":"How to Install SSL Certificate on NGINX Server - WebHi Tutorials &amp; Documentations","isPartOf":{"@id":"https:\/\/www.webhi.com\/how-to\/#website"},"datePublished":"2023-04-01T01:50:35+00:00","dateModified":"2023-04-01T01:50:40+00:00","description":"In this article, we will guide you through the process of installing an SSL certificate on an NGINX server, ensuring a secure connection for your website visitors.","breadcrumb":{"@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.webhi.com\/how-to\/how-to-install-ssl-certificate-on-nginx-server\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.webhi.com\/how-to\/"},{"@type":"ListItem","position":2,"name":"How to Install SSL Certificate on NGINX 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=1784239260","contentUrl":"https:\/\/www.webhi.com\/how-to\/ahuphiph\/litespeed\/avatar\/e20da107d0f4c765ead2eef88ad019d8.jpg?ver=1784239260","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\/4469"}],"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=4469"}],"version-history":[{"count":15,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/4469\/revisions"}],"predecessor-version":[{"id":4531,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/posts\/4469\/revisions\/4531"}],"wp:attachment":[{"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/media?parent=4469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/categories?post=4469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.webhi.com\/how-to\/wp-json\/wp\/v2\/tags?post=4469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}