2018-03-01から1ヶ月間の記事一覧

CSP

https://developers.google.com/web/fundamentals/security/csp/?hl=ja nginx でCSP sites-available/default server { listen 443 ssl http2 default_server; server_name example.org; # More config here add_header Content-Security-Policy-Report-Only…

Chromeのリダイレクトキャッシュ

301 Moved Permanently 302 Moved Temporarilyhttps://holy-seo.net/blog/seo/seo-301-and-302-understanding/ 上記のnginxの設定では、メンテナンス画面の表示に301リダイレクトを用いているが、Chromeは301リダイレクトのキャッシュを保持する仕様のため、…

ETag Cache-Control max-age HTTP cache

https://developers.google.com/web/fundamentals/performance/optimizing-content-efficiency/http-caching?hl=ja#_1https://developer.mozilla.org/ja/docs/Web/HTTP/Cachingキャッシュ制御に関する私的まとめ | SD MILIEU

varnish5 munin 監視

https://github.com/munin-monitoring/contrib/issues/876https://github.com/munin-monitoring/contrib/files/1797128/varnish5_.txt my $configtype = $ASPECTS{$self}{'type'}; to my $configtype = $ASPECTS{$self}{'type'} ? $ASPECTS{$self}{'type'} :…

ansible postgres

ansibleでpostgresqlインストール https://qiita.com/kitaro_tn/items/04aa7279c17be8b9b0ed To achieve your desired functionality add this to your sudoers file %group1 ALL=(user2) NOPASSWD: /full/path/to/script2 This will allow group1 to run sc…

nginx で複数の php_value を設定する

https://coderwall.com/p/gt2g3q/setting-multiple-php_value-in-nginx-config Multiple values, manually line-broken: fastcgi_param PHP_VALUE "sendmail_from=chroot@prout.com precision=42"; https://michaelshadle.com/2011/02/11/setting-php-ini-pa…

php NFS session

対策として, 各 Webサーバの php.ini を session.gc_probability = 0 に変更し, Webサーバ上でガベージコレクションが発生しないようにして, NFSサーバにて cron処理でセッションファイルを削除するようにしました。*4PHP で複数の Webサーバでセッションを…

ansible 実行速度 ControlMaster Pipelining

ControlMaster: 有効 & pipeline: 有効 [defaults] transport = ssh [ssh_connection] pipeline = true ssh_args = -o ControlMaster=auto -o ControlPersist=300s https://blog.mosuke.tech/entry/2015/12/01/181304/