らっちゃいブログ

日々の学びと気づきを発信するブログ

nginx

【Nginx】ガラケーからSSL接続できなくて原因を調べたときの話

経緯 調査 ひとこと 経緯 ガラケーからアクセスすると 「ユーザ証明書がありません」 の表示が出てアクセスできない、というユーザーからの問い合わせで発覚。 調査 まず設定内容を確認。 ガラケーとそれ以外でドメイン分けて名前ベースのバーチャルホストを…

Nginx1.11.2がリリースされました

変更点を見てみます。 https://nginx.org/en/CHANGES *) Change: now nginx always uses internal MD5 and SHA1 implementations; the --with-md5 and --with-sha1 configure options were canceled. *) Feature: variables support in the stream module. *…

Nginx 1.11 がリリースされました

http://nginx.org/en/CHANGES 変更点はこちら。 *) Feature: the "transparent" parameter of the "proxy_bind", "fastcgi_bind", "memcached_bind", "scgi_bind", and "uwsgi_bind" directives. *) Feature: the $request_id variable. *) Feature: the "ma…

Nginxの安定版がリリースされたよ!バージョンは2.0ではなく1.10.0

nginx news 2016-04-26 nginx-1.10.0 stable version has been released, incorporating new features from the 1.9.x mainline branch - including the stream module, HTTP/2, dynamic modules support and more. ようやく安定版が出ましたね。CHANGESを見…

Nginx1.9.15がリリースされました

タイトルの通りですが、Nginx1.9.15がリリースされています。 昨日こういう記事を書いたばかりなので、今後も随時リリース情報をお伝えしていこうかと思います。 racchai.hatenablog.com さて、以下が変更点を見ていきましょう。 http://nginx.org/en/CHANGE…

Nginxのproxy_next_upstreamが意図した挙動にならない問題を調べた

どうもこんにちは。racchai です。 Nginxの設定が意図通りの動きにならなくていろいろ調査したので、共有したいと思います。 proxy_next_upstream とは 何が問題なのか proxy_request_buffering を無効にしてみる 解決方法 まとめ proxy_next_upstream とは …