1.9 nginx 에서 지정 한 파일 형식의 로 그 를 기록 하지 않 습 니 다.

1017 단어
# cd /usr/local/nginx/conf/nginx.conf 
  :
server_names_hash_bucket_size 3526;
    server_names_hash_max_size 4096;
    log_format aming'$remote_addr(  IP) $http_x_forwarded_for(  IP) [$time_local]'(  )
    '$host(  ) "$request_uri"(    ) $status'(   )
    '"$http_referer" "$http_user_agent"';
    sendfile on;
tcp_nopush on;
# cd /usr/local/nginx/conf/vhosts/
 index index.html index.htm index.php;
 root /data/www;
 access_log /tmp/accesstest.log      //        /tmp/accesstest.log
location ~ .*admin\.php$ {
   auth_basic "wyclinux auth";
   auth_basic_user_file   /usr/local/nginx/conf/.htpasswd;
     include fastcgi_params;
     fastcgi_pass unix:/tmp/php-fcgi.sock;
     fastcgi_index index.php;
     fastcgi_param SCRIPT_FILENAME /data/www$fastcgi_script_name;
}
   location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|css)$
{
  access_log off;      //          
}
# /usr/local/nginx/sbin/nginx –t
# /usr/local/nginx/sbin/nginx -s reload

좋은 웹페이지 즐겨찾기