5 月 072013
 

1

#user  nobody;
worker_processes  1;

2

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

3

#pid        logs/nginx.pid;

4

events {
 worker_connections  1024;
}

5

http {
 include       mime.types;
 default_type  application/octet-stream;
#log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
 #                  '$status $body_bytes_sent "$http_referer" '
 #                  '"$http_user_agent" "$http_x_forwarded_for"';
#access_log  logs/access.log  main;
sendfile        on;
 #tcp_nopush     on;
#keepalive_timeout  0;
 keepalive_timeout  65;
#gzip  on;
server {
 listen       80;
 server_name  localhost;
#charset koi8-r;
#access_log  logs/host.access.log  main;
location / {
 root   html;
 index  index.html index.htm;
 }
#error_page  404              /404.html;
# redirect server error pages to the static page /50x.html
 #
 error_page   500 502 503 504  /50x.html;
 location = /50x.html {
 root   html;
 }
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
 #
 #location ~ \.php$ {
 #    proxy_pass   http://127.0.0.1;
 #}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
 #
 #location ~ \.php$ {
 #    root           html;
 #    fastcgi_pass   127.0.0.1:9000;
 #    fastcgi_index  index.php;
 #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
 #    include        fastcgi_params;
 #}
# deny access to .htaccess files, if Apache's document root
 # concurs with nginx's one
 #
 #location ~ /\.ht {
 #    deny  all;
 #}
 }
# another virtual host using mix of IP-, name-, and port-based configuration
 #
 #server {
 #    listen       8000;
 #    listen       somename:8080;
 #    server_name  somename  alias  another.alias;
#    location / {
 #        root   html;
 #        index  index.html index.htm;
 #    }
 #}
# HTTPS server
 #
 #server {
 #    listen       443;
 #    server_name  localhost;
#    ssl                  on;
 #    ssl_certificate      cert.pem;
 #    ssl_certificate_key  cert.key;
#    ssl_session_timeout  5m;
#    ssl_protocols  SSLv2 SSLv3 TLSv1;
 #    ssl_ciphers  HIGH:!aNULL:!MD5;
 #    ssl_prefer_server_ciphers   on;
#    location / {
 #        root   html;
 #        index  index.html index.htm;
 #    }
 #}
}

获取nginx的性能状态信息

在编译nginx过程中需启用–with-http_stub_status_module参数

查看当前安装Nginx的版本与配置信息

[root@localhost conf]# export PATH=/usr/local/nginx/sbin/:$PATH
[root@localhost conf]# nginx -V
nginx version: nginx/1.4.0
built by gcc 4.4.7 20120313 (Red Hat 4.4.7-3) (GCC)
TLS SNI support enabled
configure arguments: –prefix=/usr/local/nginx –with-http_stub_status_module
–with-http_ssl_module –with-pcre=../pcre-8.32/
–with-zlib=../zlib-1.2.8 –with-openssl=../openssl-1.0.1e
[root@localhost conf]#

添加

location /status {
stub_status on;
access_log  off;
allow 192.168.244.0/24;
deny all;
}

nginx-140-config-01

服务器文件列表
[root@localhost conf]# pwd
/usr/local/nginx/conf
[root@localhost conf]# mkdir ../html/pub
[root@localhost conf]# touch ../html/pub/hello.txt

location /pub   {
autoindex on;
autoindex_exact_size on;
autoindex_localtime off;
}

nginx-140-config-02

检测配置文件正确性

[root@localhost conf]# nginx -t -c /usr/local/nginx/conf/nginx.conf
nginx: [emerg] unexpected end of file, expecting “}” in /usr/local/nginx/conf/nginx.conf:131
nginx: configuration file /usr/local/nginx/conf/nginx.conf test failed
[root@localhost conf]#

nginx-140-config-03

[root@localhost conf]# nginx -t -c /usr/local/nginx/conf/nginx.conf
nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful
[root@localhost conf]#

 

 Leave a Reply

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

(required)

(required)