Skip to content

Instantly share code, notes, and snippets.

Avatar

Ashish Banerjee innomon

View GitHub Profile
@RienNeVaPlus
RienNeVaPlus / letsencrypt-certbot-arangodb.md
Last active March 10, 2023 19:22
Using Let's Encrypt's Certbot SSL-Certificates with ArangoDB
View letsencrypt-certbot-arangodb.md

Using Let's Encrypt's Certbot Certificates with ArangoDB

Let's Encrypt generates SSL certificates for free.
Follow these steps to create and use an SSL certificate with ArangoDB.

1. Install the Certbot from LetsEncrypt (Certbot instructions)

sudo apt-get update
sudo apt-get install software-properties-common
@alex-leonhardt
alex-leonhardt / main.go
Last active March 12, 2023 12:46
golang text/template with a map[string]interface{} populated from mixed json data
View main.go
package main
import (
"encoding/json"
"os"
"reflect"
"text/template"
)