13
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

nginxで、オリジナルのリクエストヘッダにアンダーバーを使えるようにするメモ

Posted at

オリジナルのリクエストヘッダを受け取って、WebAPIでゴニョゴニョしたい…っていうことあると思うんだけど、どうも名前にアンダーバーが入っているものがアプリ側で受け取れないなーと思っていたら、nginxの方でフィルタリングされていたという。

例えば、Railsでrequest.env['HTTP_X_HOGE_SIGNATURE']みたいなのを受け取りたいとするんだけど、一向にやってこない。てもの開発環境だと、rails sして確認しているから、余計気が付かなかった。

対処方法は…

/etc/nginx/nginx.conf
underscores_in_headers on;

underscores_in_headersを有効にするだけ…!これが分からずハマってしまった…!

13
9
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?