nginx サブドメイン設定

blog用にサブドメインを設定。

.
.
# blog - wordpress
server {
  listen 80;
  server_name frenzy.psychobil.ly;
  location / {
  root html/wordpress;
  index index.html index.htm index.php;
  deny 216.13.56.89;
  }

  location ~ \.php$ {
   root html/wordpress;
  fastcgi_pass 127.0.0.1:9000;
  fastcgi_index index.php;
  fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  include fastcgi_params;
  }

  server_tokens off;
}
.
.

ハイパフォーマンスHTTPサーバ Nginx入門

ハイパフォーマンスHTTPサーバ Nginx入門