nginxで許可したIP以外はBasic認証をかける nginxの設定で以下のようにします。 location / { satisfy any; auth_basic “Basic Auth”; auth_basic_user_file /path/to/.htpasswd… alkoshikawaハック2016.02.29 1,827
nginx+wordpressで管理画面のURLにIP制限をかける location ~* /wp-login\.php|/wp-admin/((?!admin-ajax\.php).)*$ { allow {接続元IP} allow {サーバーのGlobalIP}; allow 127… 高瀬 裕介ハック2016.02.25 3,067
svgzを表示する WEBサーバーのデフォルトの設定でもsvgファイルについては表示可能ですが、svgzを表示する場合は設定が必要になります。 Apacheは非常に単純で AddEncoding gzip svgz AddType imag… alkoshikawaハック2016.01.26 1,674
NginxでIPごとのアクセスランキングを取得する grep “24/Dec/2015″ /var/log/nginx/access.log | cut -f 1 -d ” ” | sort | uniq -c | sort -g -r | more ちなみにソートの順番… @iwasakiハック2015.12.24 518
MonitorixでNginxのStatisticsを表示する vim /etc/nginx/conf.d/status.conf — server { listen 80; server_name 127.0.0.1; location /nginx_status { stub… 高瀬 裕介ハック2015.12.02 470
Nginxでbasic認証をかける htpasswd -c /path/to/.htpasswd {user} server { listen 80; location / { auth_basic “Basic Auth”; auth_basic_use… alkoshikawaハック2015.12.01 204
openMAINTのnginx設定 server { listen 80; server_name {server_name}; root /path/to/tomcat/webapps; location ~ “^/openmaint(/images/|… Tetsuro Aokiハック2015.11.24 327
nginxのテスト用に自己証明書を作るシェルスクリプト if [ ! -d “/etc/nginx/ssl” ]; then mkdir /etc/nginx/ssl cd /etc/nginx/ssl openssl genrsa 2048 > localhost.k… 高瀬 裕介ハック2015.08.12 536
nginx+php-fpm構成のときのumask変更 php-fpmをnginx権限で動作させるようにしておきます。 echo “umask 0002” >> /etc/sysconfig/php-fpm service php-fpm restart alkoshikawaハック2015.06.26 1,930