ガリレオスコープ開発チームによる �最新Web動向、技術メモ ( Ruby, Rails, node.js ) です nginxでBasic認証をかけたのでメモです。 nginxの設定nginxの設定は単純で、以下の2行追加すればOKでした。 auth_basic "QS Beta TEST"; auth_basic_user_file "/home/httpd/.htpasswd"; なので、通して書くと、 server{ listen 80; server_name xxx.abc.com; location / { auth_basic "QS Beta TEST"; auth_basic_user_file "/home/httpd/.htpasswd"; proxy_pass http://localhost:4009; proxy_set_header X-Real-IP $r