This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Nginx config used for api.solana-tds.everstake.one | |
# Tune timeouts for proxy | |
proxy_buffering off; | |
proxy_connect_timeout 360s; | |
proxy_send_timeout 360s; | |
proxy_read_timeout 700s; | |
proxy_next_upstream error timeout http_500 http_502 http_503 http_504; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Source: https://gist.github.com/2e67c67a36a2e782422ebefb4a0a2612 | |
git clone https://github.com/vfarcic/devops-toolkit-crossplane | |
cd devops-toolkit-crossplane | |
# Create a local Kubernetes cluster. | |
kubectl create namespace crossplane-system |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#Build and install neovim for Debian | |
#See: https://neovim.io/ | |
#See: https://github.com/neovim/neovim/wiki/Building-Neovim#quick-start | |
#Save current dir | |
pushd . > /dev/null | |
#Install dependencies |