bootjpのメモ帳

https://bootjp.me で書くほどではないことを

Nginxの$hostと$http_hostのちがい

proxy のconf で$hostを$http_hostを間違えて rails のinvalid authentication tokenとなった。 nginxの $host 変数は in this order of precedence: host name from the request line, or host name from the “Host” request header field, or the server n…

LinuxですべてのコアをPowersaveにするsnippet

echo "powersave" | tee /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor

最近作成されたファイルを探す(Raspberry PiなどのIOを減らしたい環境でファイル書き込みを探す)

find /home/ /var/ /etc/ /opt/ /srv/ /usr /opt -cmin -1

/ からサイズがでかいファイルを探す snippet

sudo du -a / 2>/dev/null | sort -n -r | head -n 20

Go moduleを一括でアップデートする snippet

go get -u ./...