Run these commands as root to create a 512 megabyte swap.
fallocate -l 512m /media/state/512MiB.swap
chmod 600 /media/state/512MiB.swap
mkswap /media/state/512MiB.swap
| ################################################### | |
| ## | |
| ## Alertmanager YAML configuration for routing. | |
| ## | |
| ## Will route alerts with a code_owner label to the slack-code-owners receiver | |
| ## configured above, but will continue processing them to send to both a | |
| ## central Slack channel (slack-monitoring) and PagerDuty receivers | |
| ## (pd-warning and pd-critical) | |
| ## |
| /** | |
| * USB HID Keyboard scan codes as per USB spec 1.11 | |
| * plus some additional codes | |
| * | |
| * Created by MightyPork, 2016 | |
| * Public domain | |
| * | |
| * Adapted from: | |
| * https://source.android.com/devices/input/keyboard-devices.html | |
| */ |
| package main | |
| import ( | |
| "crypto/tls" | |
| "fmt" | |
| "html" | |
| "io/ioutil" | |
| "log" | |
| "net" | |
| "net/http" |
| function fish_right_prompt | |
| set -l k8s_color (set_color blue) | |
| set -l k8s_context (kubectl config current-context) | |
| echo -e -n -s $k8s_color "($k8s_context)" | |
| end |
| package main | |
| import ( | |
| "fmt" | |
| "io" | |
| "net" | |
| ) | |
| func main() { | |
| ln, err := net.Listen("tcp", ":8080") |
| open ~/.config/fish/config.fish | |
| add: set -x SHELL /bin/bash |
just change out app_name for your purposes
openssl genrsa 2048 > app_name-wildcard.key
openssl req -new -x509 -nodes -sha1 -days 3650 -key app_name-wildcard.key > app_name-wildcard.cert
# Common Name (eg, your name or your server's hostname) []:*.app_name.com
openssl x509 -noout -fingerprint -text < app_name-wildcard.cert > app_name-wildcard.info| #!/bin/bash | |
| # | |
| # tomcat | |
| # | |
| # chkconfig: 345 96 30 | |
| # description: Start up the Tomcat servlet engine. | |
| # | |
| # processname: java | |
| # pidfile: /var/run/tomcat.pid | |
| # |
| # Makefile for a go project | |
| # | |
| # Author: Jon Eisen | |
| # site: joneisen.me | |
| # | |
| # Targets: | |
| # all: Builds the code | |
| # build: Builds the code | |
| # fmt: Formats the source files | |
| # clean: cleans the code |