This repository has been archived by the owner on Oct 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
9 lines (9 loc) · 4.22 KB
/
index.html
1
2
3
4
5
6
7
8
9
<!doctype html><html xmlns=http://www.w3.org/1999/xhtml xml:lang=en-us lang=en-us><head><link href=https://gmpg.org/xfn/11 rel=profile><meta charset=utf-8><meta name=generator content="Hugo 0.76.5"><meta name=viewport content="width=device-width,initial-scale=1"><title>The Ops Blog</title><meta name=description content="This is a blog about System Administration, AWS & Operations in general"><link type=text/css rel=stylesheet href=https://beingadityak.com/css/print.css media=print><link type=text/css rel=stylesheet href=https://beingadityak.com/css/poole.css><link type=text/css rel=stylesheet href=https://beingadityak.com/css/syntax.css><link type=text/css rel=stylesheet href=https://beingadityak.com/css/hyde.css><link rel=stylesheet href="https://fonts.googleapis.com/css?family=Abril+Fatface|PT+Sans:400,400i,700"><link rel=apple-touch-icon-precomposed sizes=144x144 href=/apple-touch-icon-144-precomposed.png><link rel="shortcut icon" href=/favicon.png><link href=https://beingadityak.com/index.xml rel=alternate type=application/rss+xml title="The Ops Blog"></head><body class=theme-base-0d><aside class=sidebar><div class="container sidebar-sticky"><div class=sidebar-about><a href=https://beingadityak.com/><h1>The Ops Blog</h1></a><p class=lead>This is a blog about System Administration, AWS & Operations in general</p></div><nav><ul class=sidebar-nav><li><a href=https://beingadityak.com/>Home</a></li><li><a href=/about>About</a></li><li><a href=https://github.com/beingadityak/>Aditya's Github</a></li><li><a href=https://www.linkedin.com/in/beingadityak/>Aditya's LinkedIn</a></li></ul></nav><p>© 2020. All rights reserved.</p></div></aside><main class="content container"><div class=posts><article class=post><h1 class=post-title><a href=https://beingadityak.com/posts/paid-ssl-certs-nginx/>Setup paid SSL Certificates for your NGINX installation</a></h1><time datetime=2020-06-07T12:37:36+0530 class=post-date>Sun, Jun 7, 2020</time>
TLDR; To generate the certs, create a CSR file with the following:
openssl genrsa -out domain.com.key 2048 openssl req -new -sha256 -key domain.com.key -out domain.com.cs Upload the contents of the CSR to your SSL certs provider (in my case, Comodo SSL). It will create an activation file.
Download the same (don’t change the name in any case!) and upload it to your application directory (in my case, /var/www/html) under .<div class=read-more-link><a href=/posts/paid-ssl-certs-nginx/>Read More…</a></div></article><article class=post><h1 class=post-title><a href=https://beingadityak.com/posts/fix-rootfs-ec2/>Fix RootFS related errors in your failed EC2 Linux instance</a></h1><time datetime=2020-06-07T11:25:22+0530 class=post-date>Sun, Jun 7, 2020</time>
TLDR; If you face the RootFS related issue, try to check whether the AMI was having an older version of the Linux kernel. If it does, chroot into your volume and perform a kernel upgrade. Once done, detach the volume and create an AMI out of it. This will fix the 1/2 status checks issue.
Context If you have worked with Amazon EC2 in the past, there might be a chance that sometimes the EC2 instance fails to launch after a fresh start/stop-start of the instance.<div class=read-more-link><a href=/posts/fix-rootfs-ec2/>Read More…</a></div></article><article class=post><h1 class=post-title><a href=https://beingadityak.com/about/>About Aditya</a></h1><time datetime=2020-06-06T11:25:22+0530 class=post-date>Sat, Jun 6, 2020</time>
Welcome to my website!
I am Aditya Krishnakumar, a DevOps Engineer based out of India. I’m mostly into AWS, GCP & Azure Cloud these days and I like to tinker around stuff like testing out new software (I also advocate self-hosting stuff as well), automating certain things from my job, checking out new products and services offered by the mentioned clouds etc.
Apart from the major clouds, I also like to hack stuff using Linode as my development platform.<div class=read-more-link><a href=/about/>Read More…</a></div></article></div></main><script type=application/javascript>var doNotTrack=false;if(!doNotTrack){window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;ga('create','UA-168023992-1','auto');ga('send','pageview');}</script><script async src=https://www.google-analytics.com/analytics.js></script></body></html>