Skip to content

Instantly share code, notes, and snippets.

ElasticSearch.org Website Search: Field Notes

These are field notes gathered during installation of website search facility for the ElasticSearch website.

You may re-use it to put a similar system in place.

The following assumes:

@cmrajan
cmrajan / main.go
Last active February 22, 2017 23:13 — forked from nicolai86/main.go
AWS es Proxy in go -- using AWS shared credentials and profile
package main
import (
"bytes"
"flag"
"fmt"
"github.com/aws/aws-sdk-go/aws/credentials"
"github.com/aws/aws-sdk-go/aws/signer/v4"
"github.com/aws/aws-sdk-go/private/protocol/rest"
"io/ioutil"
#!/usr/bin/env bash
set -e
# Default configuration
DRY_RUN=false
# Parse command line arguments
while [[ "$#" -gt 0 ]]; do
case $1 in
-h|--help)