{"id":13926,"date":"2024-05-29T13:46:25","date_gmt":"2024-05-29T10:46:25","guid":{"rendered":"http:\/\/local.brightwhiz\/?p=13926"},"modified":"2024-05-29T13:46:26","modified_gmt":"2024-05-29T10:46:26","slug":"how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat","status":"publish","type":"post","link":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/","title":{"rendered":"How To Install SSL Certificates On Nginx Web Server On Ubuntu 24.04 Noble Numbat"},"content":{"rendered":"\n

Securing your website with SSL (Secure Sockets Layer) certificates is essential for protecting sensitive data and establishing trust with your users. SSL certificates encrypt the data transmitted between your server and clients, ensuring privacy and data integrity. This guide will walk you through the steps to install SSL<\/a> certificates on an Nginx web<\/a> server running on Ubuntu 24.04 Noble Numbat.<\/p>\n\n\n\n

Step 1: Update Your Package List<\/h2>\n\n\n\n

Before starting, ensure your package list is up to date. Open your terminal and run:<\/p>\n\n\n\n

$ sudo apt update<\/code><\/pre>\n\n\n\n

This command refreshes the package list and ensures you have the latest information on available packages.<\/p>\n\n\n\n

Step 2: Install Nginx and Certbot<\/h2>\n\n\n\n

Certbot is a tool that automates the process of obtaining and installing SSL certificates from Let’s Encrypt. Install Nginx<\/a> and Certbot by running:<\/p>\n\n\n\n

$ sudo apt install nginx certbot python3-certbot-nginx<\/code><\/pre>\n\n\n\n

Step 3: Configure Your Domain<\/h2>\n\n\n\n

Make sure your domain is correctly configured and pointing to your server’s IP address. You can use DNS tools like dig<\/code> or online services to verify this. For example:<\/p>\n\n\n\n

$ dig yourdomain.com +short<\/code><\/pre>\n\n\n\n

This command should return your server’s IP address.<\/p>\n\n\n\n

Step 4: Allow HTTPS Traffic<\/h2>\n\n\n\n

If you have a firewall enabled, ensure that it allows HTTPS traffic. Run the following commands to allow traffic on both HTTP (port 80) and HTTPS (port 443):<\/p>\n\n\n\n

$ sudo ufw allow 'Nginx Full'\n$ sudo ufw delete allow 'Nginx HTTP'<\/code><\/pre>\n\n\n\n

The first command allows both HTTP and HTTPS traffic, and the second command removes the previous rule that allowed only HTTP traffic.<\/p>\n\n\n\n

Step 5: Obtain an SSL Certificate<\/h2>\n\n\n\n

Use Certbot to obtain an SSL certificate for your domain. Certbot will automatically configure Nginx to use the certificate. Run:<\/p>\n\n\n\n

$ sudo certbot --nginx -d yourdomain.com -d www.yourdomain.com<\/code><\/pre>\n\n\n\n

Replace yourdomain.com<\/code> and www.yourdomain.com<\/code> with your actual domain names. Certbot will guide you through the process, including verifying your domain ownership and configuring Nginx.<\/p>\n\n\n\n

During this process, you’ll be prompted to enter your email address for urgent renewal and security notices, and agree to the Let’s Encrypt terms of service.<\/p>\n\n\n\n

Step 6: Verify SSL Certificate Installation<\/h2>\n\n\n\n

After Certbot completes the installation, it will reload Nginx to apply the new configuration. To verify the installation, open your browser and navigate to:<\/p>\n\n\n\n

https:\/\/yourdomain.com<\/code><\/pre>\n\n\n\n

You should see your website served over HTTPS with a secure connection. You can also use SSL checking tools like SSL Labs<\/a> to verify your SSL certificate’s details and configuration.<\/p>\n\n\n\n

Step 7: Automatic Renewal<\/h2>\n\n\n\n

Let’s Encrypt certificates are valid for 90 days, but Certbot will automatically handle the renewal process. To ensure the renewal process works correctly, you can simulate a renewal with:<\/p>\n\n\n\n

$ sudo certbot renew --dry-run<\/code><\/pre>\n\n\n\n

This command tests the renewal process without making any actual changes.<\/p>\n\n\n\n

Step 8: Advanced Configuration (Optional)<\/h2>\n\n\n\n

Redirect HTTP to HTTPS<\/h3>\n\n\n\n

To ensure all traffic is encrypted, you can configure Nginx to redirect HTTP requests to HTTPS. Edit your Nginx server block configuration:<\/p>\n\n\n\n

$ sudo nano \/etc\/nginx\/sites-available\/yourdomain.com<\/code><\/pre>\n\n\n\n

Add the following configuration to the top of the file:<\/p>\n\n\n\n

server {\n    listen 80;\n    server_name yourdomain.com www.yourdomain.com;\n    return 301 https:\/\/$host$request_uri;\n}<\/code><\/pre>\n\n\n\n

This configuration will redirect all HTTP traffic to HTTPS. Save and close the file, then reload Nginx:<\/p>\n\n\n\n

$ sudo systemctl reload nginx<\/code><\/pre>\n\n\n\n

Additional Security Enhancements<\/h3>\n\n\n\n

For enhanced security, you can configure stronger SSL settings in your Nginx configuration. Add or modify the following settings in your SSL server block:<\/p>\n\n\n\n

ssl_protocols TLSv1.2 TLSv1.3;\nssl_prefer_server_ciphers on;\nssl_ciphers 'ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256';\nssl_ecdh_curve secp384r1;\nssl_session_cache shared:SSL:10m;\nssl_session_timeout 10m;\nssl_stapling on;\nssl_stapling_verify on;\nresolver 8.8.8.8 8.8.4.4 valid=300s;\nresolver_timeout 5s;<\/code><\/pre>\n\n\n\n

These settings ensure that Nginx uses the latest and most secure protocols and ciphers.<\/p>\n\n\n\n

Conclusion<\/h2>\n\n\n\n

You’ve successfully installed SSL certificates on your Nginx web server running Ubuntu<\/a> 24.04 Noble Numbat. Your website is now secured with HTTPS, providing encrypted communication and enhanced security for your users.<\/p>\n","protected":false},"excerpt":{"rendered":"

Securing your website with SSL (Secure Sockets Layer) certificates is essential for protecting sensitive data and establishing trust with your users. SSL certificates encrypt the data transmitted between your server…<\/p>\n","protected":false},"author":1,"featured_media":13950,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2,23,9,28,16,18],"tags":[193,400,433,526,555,572,591,635,636,638],"yoast_head":"\nHow To Install SSL Certificates On Nginx On Ubuntu 24.04<\/title>\n<meta name=\"description\" content=\"This guide will walk you through the steps to install SSL certificates on an Nginx web server running on Ubuntu 24.04 Noble Numbat\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/\" \/>\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 Certificates On Nginx On Ubuntu 24.04\" \/>\n<meta property=\"og:description\" content=\"This guide will walk you through the steps to install SSL certificates on an Nginx web server running on Ubuntu 24.04 Noble Numbat\" \/>\n<meta property=\"og:url\" content=\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/\" \/>\n<meta property=\"og:site_name\" content=\"Brightwhiz.com\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/brightwhiz\/\" \/>\n<meta property=\"article:published_time\" content=\"2024-05-29T10:46:25+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-29T10:46:26+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Michael Bright\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:site\" content=\"@brightwhizmag\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Bright\" \/>\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\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/\"},\"author\":{\"name\":\"Michael Bright\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\"},\"headline\":\"How To Install SSL Certificates On Nginx Web Server On Ubuntu 24.04 Noble Numbat\",\"datePublished\":\"2024-05-29T10:46:25+00:00\",\"dateModified\":\"2024-05-29T10:46:26+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/\"},\"wordCount\":539,\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg\",\"keywords\":[\"DevOps\",\"Nginx\",\"Optimization\",\"Security\",\"SSL\",\"Systems\",\"Tools\",\"Web\",\"Web Applications\",\"Web Development\"],\"articleSection\":[\"Articles\",\"Guides\",\"How To\",\"Software\",\"Technology\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/\",\"url\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/\",\"name\":\"How To Install SSL Certificates On Nginx On Ubuntu 24.04\",\"isPartOf\":{\"@id\":\"http:\/\/local.brightwhiz\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg\",\"datePublished\":\"2024-05-29T10:46:25+00:00\",\"dateModified\":\"2024-05-29T10:46:26+00:00\",\"description\":\"This guide will walk you through the steps to install SSL certificates on an Nginx web server running on Ubuntu 24.04 Noble Numbat\",\"breadcrumb\":{\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#primaryimage\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg\",\"width\":1280,\"height\":680,\"caption\":\"Install SSL Certificates On Nginx\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/local.brightwhiz\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Install SSL Certificates On Nginx Web Server On Ubuntu 24.04 Noble Numbat\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/local.brightwhiz\/#website\",\"url\":\"http:\/\/local.brightwhiz\/\",\"name\":\"Brightwhiz.com\",\"description\":\"Best Tech guides, Tutorials, and News\",\"publisher\":{\"@id\":\"http:\/\/local.brightwhiz\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/local.brightwhiz\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/local.brightwhiz\/#organization\",\"name\":\"Brightwhiz\",\"url\":\"http:\/\/local.brightwhiz\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"contentUrl\":\"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png\",\"width\":706,\"height\":135,\"caption\":\"Brightwhiz\"},\"image\":{\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/brightwhiz\/\",\"https:\/\/x.com\/brightwhizmag\",\"https:\/\/instagram.com\/bright_whiz\/\",\"https:\/\/www.pinterest.com\/sobbayi\/\",\"https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32\",\"name\":\"Michael Bright\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/\",\"url\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"contentUrl\":\"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g\",\"caption\":\"Michael Bright\"},\"sameAs\":[\"https:\/\/sobbayi.com\"],\"url\":\"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Install SSL Certificates On Nginx On Ubuntu 24.04","description":"This guide will walk you through the steps to install SSL certificates on an Nginx web server running on Ubuntu 24.04 Noble Numbat","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":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/","og_locale":"en_US","og_type":"article","og_title":"How To Install SSL Certificates On Nginx On Ubuntu 24.04","og_description":"This guide will walk you through the steps to install SSL certificates on an Nginx web server running on Ubuntu 24.04 Noble Numbat","og_url":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/","og_site_name":"Brightwhiz.com","article_publisher":"https:\/\/www.facebook.com\/brightwhiz\/","article_published_time":"2024-05-29T10:46:25+00:00","article_modified_time":"2024-05-29T10:46:26+00:00","og_image":[{"width":1280,"height":680,"url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg","type":"image\/jpeg"}],"author":"Michael Bright","twitter_card":"summary_large_image","twitter_creator":"@brightwhizmag","twitter_site":"@brightwhizmag","twitter_misc":{"Written by":"Michael Bright","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#article","isPartOf":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/"},"author":{"name":"Michael Bright","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32"},"headline":"How To Install SSL Certificates On Nginx Web Server On Ubuntu 24.04 Noble Numbat","datePublished":"2024-05-29T10:46:25+00:00","dateModified":"2024-05-29T10:46:26+00:00","mainEntityOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/"},"wordCount":539,"publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg","keywords":["DevOps","Nginx","Optimization","Security","SSL","Systems","Tools","Web","Web Applications","Web Development"],"articleSection":["Articles","Guides","How To","Software","Technology","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/","url":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/","name":"How To Install SSL Certificates On Nginx On Ubuntu 24.04","isPartOf":{"@id":"http:\/\/local.brightwhiz\/#website"},"primaryImageOfPage":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"image":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#primaryimage"},"thumbnailUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg","datePublished":"2024-05-29T10:46:25+00:00","dateModified":"2024-05-29T10:46:26+00:00","description":"This guide will walk you through the steps to install SSL certificates on an Nginx web server running on Ubuntu 24.04 Noble Numbat","breadcrumb":{"@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#primaryimage","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2024\/05\/Install-SSL-Certificates-On-Nginx.jpg","width":1280,"height":680,"caption":"Install SSL Certificates On Nginx"},{"@type":"BreadcrumbList","@id":"http:\/\/local.brightwhiz\/how-to-install-ssl-certificates-on-nginx-web-server-on-ubuntu-24-04-noble-numbat\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/local.brightwhiz\/"},{"@type":"ListItem","position":2,"name":"How To Install SSL Certificates On Nginx Web Server On Ubuntu 24.04 Noble Numbat"}]},{"@type":"WebSite","@id":"http:\/\/local.brightwhiz\/#website","url":"http:\/\/local.brightwhiz\/","name":"Brightwhiz.com","description":"Best Tech guides, Tutorials, and News","publisher":{"@id":"http:\/\/local.brightwhiz\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/local.brightwhiz\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/local.brightwhiz\/#organization","name":"Brightwhiz","url":"http:\/\/local.brightwhiz\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/","url":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","contentUrl":"http:\/\/local.brightwhiz\/wp-content\/uploads\/2021\/11\/brightwhiz-com-logo-orange.png","width":706,"height":135,"caption":"Brightwhiz"},"image":{"@id":"http:\/\/local.brightwhiz\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/brightwhiz\/","https:\/\/x.com\/brightwhizmag","https:\/\/instagram.com\/bright_whiz\/","https:\/\/www.pinterest.com\/sobbayi\/","https:\/\/www.youtube.com\/channel\/UC6sCdP_d_RiTIM7ErFT-PSQ"]},{"@type":"Person","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/81f0f3126f13834ae2e7f381b3028e32","name":"Michael Bright","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/local.brightwhiz\/#\/schema\/person\/image\/","url":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","contentUrl":"http:\/\/1.gravatar.com\/avatar\/da90485875ff0aafa38fdd494abe87d1?s=96&d=mm&r=g","caption":"Michael Bright"},"sameAs":["https:\/\/sobbayi.com"],"url":"http:\/\/local.brightwhiz\/author\/sobbayiadmin\/"}]}},"_links":{"self":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13926"}],"collection":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/comments?post=13926"}],"version-history":[{"count":2,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13926\/revisions"}],"predecessor-version":[{"id":13951,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/posts\/13926\/revisions\/13951"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media\/13950"}],"wp:attachment":[{"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/media?parent=13926"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/categories?post=13926"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/local.brightwhiz\/wp-json\/wp\/v2\/tags?post=13926"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}