{"id":5608,"date":"2012-06-01T00:53:46","date_gmt":"2012-05-31T19:23:46","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=5608"},"modified":"2016-12-19T14:45:58","modified_gmt":"2016-12-19T09:15:58","slug":"how-to-set-up-ssl-certificates-on-your-server","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/","title":{"rendered":"How to Set-up SSL certificates on your Linux server"},"content":{"rendered":"<p>In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name.<br \/>\n<br \/>\nFollowing are the steps to set-up SSL certificate on your server:<br \/>\n1. Issue Command to Generate Key: <code>openssl genrsa -des3 -out www.MY_DOMAIN_NAME.com.key 2048. <\/code><br \/>\n2. Issue Command to Generate CSR(Certificate Signing Request):<br \/>\n<code>openssl req -new -key www.MY_DOMAIN_NAME.com.key -out www.MY_DOMAIN_NAME.com.csr.<\/code><br \/>\n<br \/>\n This command will prompt for the following X.509 attributes of the certificate:<br \/>\n   &#8211; Country Name: Use the two-letter code without punctuation for country, for example: US or CA.<br \/>\n   &#8211; State or Province: Spell out the state completely; do not abbreviate the state or province name, for example: California<br \/>\n   &#8211; Locality or City: The Locality field is the city or town name, for example: Berkeley. Do not abbreviate. For example: Saint Louis, not St. Louis<br \/>\n   &#8211; Company: If the company or department has an &amp;, @, or any other symbol using the shift key in its name,the symbol must be spelled out or omitted, in order to enroll. Example: XY &amp; Z Corporation would be XYZ Corporation or XY and Z Corporation.<br \/>\n   &#8211; Common Name: The Common Name is the Host + Domain Name. It looks like &#8220;www.company.com&#8221; or &#8220;company.com&#8221;. etc.<br \/>\n   &#8211; <strong>You can skip other attributes by pressing return (or enter)<\/strong><br \/>\n<br \/>\n3. You can verify your CSR (Optional) Here<br \/>\n4. Now, At verilog site or any other site apply for test certificates and fill up the details over there, paste your www.MY_DOMAIN_NAME.com.csr file content  on the request form and submit it.<br \/>\n5. After few minutes, You will receive an email which contains the certificate attached in its body, copy that certificate and save it as www.MY_DOMAIN_NAME.com.crt on your server. (For email,check your spam also \ud83d\ude09 )<br \/>\n6. Enable MOD-SSL by Issuing Commands: a2enmod ssl<br \/>\n7. Now you need to update the apache config file. Open you sites apache-config file located at \/etc\/apache2\/sites-available\/YOUR_SITE_NAME. This is an XML File . Modify &#8220;<strong>VirtualHost *.80<\/strong>&#8221; to &#8220;<strong>VirtualHost *.443<\/strong>&#8221; (443 Port is used for SSL) and paste the following code inside the &#8220;<strong>VirtualHost *:443<\/strong>&#8221; tag.<br \/>\n<code><br \/>\nSSLEngine on<br \/>\nSSLCertificateFile COMPLETE_PATH_TO_CRT_FILE (like \/home\/user\/ssl\/www.MY_DOMAIN_NAME.com.crt)<br \/>\nSSLCertificateKeyFile COMPLETE_PATH_TO_KEY_FILE (like \/home\/user\/ssl\/www.MY_DOMAIN_NAME.com.key)<br \/>\n<\/code><br \/>\n &#8211; Note: For using both http and https protocol, copy and paste &#8220;<strong>VirtualHost *.80<\/strong>&#8221; tag, modify copied &#8220;<strong>VirtualHost *.80<\/strong>&#8221; to &#8220;<strong>VirtualHost *.443<\/strong>&#8221; (443 Port is used for SSL) and paste the above code inside your &#8220;<strong>VirtualHost *.443<\/strong>&#8221; tag.<br \/>\n<br \/>\n7. You can verify your apache config, using the command: apache2ctl configtest<br \/>\n8. Restart apache by issuing command: \/etc\/init.d\/apache2 restart OR apache2ctl restart<\/p>\n<p>Hope it helps.<\/p>\n<p>Regards,<br \/>\nGautam Malhotra<br \/>\ngautam@intelligrape.com<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name. Following are [&hellip;]<\/p>\n","protected":false},"author":25,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":31,"footnotes":""},"categories":[1],"tags":[18,825,260,824,8],"class_list":["post-5608","post","type-post","status-publish","format-standard","hentry","category-technology","tag-apache","tag-certificates","tag-linux","tag-ssl","tag-ubuntu"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name. Following are\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Gautam Malhotra\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name. Following are\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name. Following are\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#article\",\"name\":\"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog\",\"headline\":\"How to Set-up SSL certificates on your Linux server\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gautam\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2012-06-01T00:53:46+05:30\",\"dateModified\":\"2016-12-19T14:45:58+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":2,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#webpage\"},\"articleSection\":\"Technology, apache, certificates, Linux, ssl, Ubuntu\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#listItem\",\"name\":\"How to Set-up SSL certificates on your Linux server\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#listItem\",\"position\":3,\"name\":\"How to Set-up SSL certificates on your Linux server\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gautam\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gautam\\\/\",\"name\":\"Gautam Malhotra\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bed491170aa57c9fa07df609957634f58b398bceae349b637e2947459bc7606d?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Gautam Malhotra\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/\",\"name\":\"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog\",\"description\":\"In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\\\/\\\/ to their name. Following are\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-set-up-ssl-certificates-on-your-server\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gautam\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/gautam\\\/#author\"},\"datePublished\":\"2012-06-01T00:53:46+05:30\",\"dateModified\":\"2016-12-19T14:45:58+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog","description":"In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name. Following are","canonical_url":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#article","name":"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog","headline":"How to Set-up SSL certificates on your Linux server","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/gautam\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"datePublished":"2012-06-01T00:53:46+05:30","dateModified":"2016-12-19T14:45:58+05:30","inLanguage":"en-US","commentCount":2,"mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#webpage"},"articleSection":"Technology, apache, certificates, Linux, ssl, Ubuntu"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/www.tothenew.com\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#listItem","name":"How to Set-up SSL certificates on your Linux server"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#listItem","position":3,"name":"How to Set-up SSL certificates on your Linux server","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/gautam\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/gautam\/","name":"Gautam Malhotra","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/bed491170aa57c9fa07df609957634f58b398bceae349b637e2947459bc7606d?s=96&d=mm&r=g","width":96,"height":96,"caption":"Gautam Malhotra"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/","name":"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog","description":"In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name. Following are","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/gautam\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/gautam\/#author"},"datePublished":"2012-06-01T00:53:46+05:30","dateModified":"2016-12-19T14:45:58+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog","og:description":"In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name. Following are","og:url":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"How to Set-up SSL certificates on your Linux server | TO THE NEW Blog","twitter:description":"In one of my project, I have to set-up SSL certificates for my website to make it secure, so that it could also be access via https protocol. SSL is a way to secure internet communication from your browser to a secure website. The websites using SSL will have https:\/\/ to their name. Following are","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"5608","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 17:02:19","updated":"2024-02-29 08:54:01","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to Set-up SSL certificates on your Linux server\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"Technology","link":"https:\/\/www.tothenew.com\/blog\/category\/technology\/"},{"label":"How to Set-up SSL certificates on your Linux server","link":"https:\/\/www.tothenew.com\/blog\/how-to-set-up-ssl-certificates-on-your-server\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/5608","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/25"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=5608"}],"version-history":[{"count":0,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/5608\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=5608"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=5608"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=5608"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}