2022-09-01から1ヶ月間の記事一覧

fml reject メールアドレス

config.ph # We reject $REJECT_ADDR@ARBITRARY.DOM.AIN since these are clearly NOT # individuals. It also may be effective to avoid mail loop since # some error or automatic reply comes from not individual addresses. # This restriction is st…

Google Workspace 組織を統合

Gmailのデータは、Data Migration Serviceを使って移行 Google Workspaceのお引越し手順を公開するぜ データ移行サービスを使用する - Google Workspace 管理者 ヘルプGoogle アカウントのデータを別の Google アカウントへ移行できますか – クラウド コンシ…

Varnish 多段構成

Varnishを多段にする利点と注意するところ – cat /dev/random > /dev/null & 2015

Varnish Storage backends ストレージ メモリ

Overhead and Fragmentation So if you have a server with a certain amount of memory available for Varnish Cache, how much of that memory do we allocate to malloc? The conservative answer is 75%. So if we have 32GB of memory available, it’s …

FreeBSD swap 追加

https://www.vultr.com/ja/docs/create-swap-file-on-freebsd-10/ # dd if=/dev/zero of=/usr/swap0 bs=1m count=8192 # chmod 0600 /usr/swap0 # echo "md99 none swap sw,file=/usr/swap0,late 0 0" >> /etc/fstab # swapon -aL $ swapinfo Device 1K-bloc…

varnish rewrite

https://serverfault.com/questions/858445/varnish-redirect-to-home-web-dirキャッシュする場合は req.http.host も書き換えたほうがよいはず sub vcl_hash { hash_data(req.url); if (req.http.host) { hash_data(req.http.host); } else { hash_data(ser…

nginx アクセスログ

$request_time $upstream_response_time $request_time request processing time in seconds with a milliseconds resolution; time elapsed between the first bytes were read from the client and the log write after the last bytes were sent to the c…

nginx ngx_http_referer_module リファラ制限

http://mogile.web.fc2.com/nginx/http/ngx_http_referer_module.htmlNginx で直リン対策を行う – ぶっちろぐ 2019S.F. Blog:nginx の valid_refererで直リンクを防止する 2020NginxのWebサーバーでコンテンツへの直リンクを制御する方法 | 4thsight.xyz 202…

さくらレンタルサーバ

ComposerさくらレンタルサーバーにComposerをインストールする方法|Koushi Kagawa|note 2020Node.jsさくらのレンタルサーバ上で Node.js (npm) を使えるようにする - モヒカンメモ 2022 FreeBSD 13のサーバだとopenssl, pythonの問題はない。node.js 16を…

nginx client_header_buffer_size

Syntax: client_header_buffer_size size; Default: client_header_buffer_size 1k; Context: http, server Sets buffer size for reading client request header. For most requests, a buffer of 1K bytes is enough. However, if a request includes long…