快速业务通道

linux nginx 配置以及排错

作者 佚名技术 来源 Linux系统 浏览 发布时间 2012-04-05

nginx实例配置过程:
直接从网络上下载rpm安装包:nginx-0.6.39-4.el4.i386.rpm
直接安装 rpm -ivh nginx-0.6.39-4.el4.i386.rpm 在RHEL4.0可以直接安装,无需其他安装包依赖
然后是配置/etc/nginx/nginx.conf
具体配置内容:
user www www; #用户 用户组
worker_processes 2; #这里根据CPU个数设置,但是可以实际的多一些

error_log /var/log/nginx/error.log; #这个是日志的位置
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;

pid /var/run/nginx.pid; #这个默认就可以


events {
worker_connections 2048; #可以设置稍微大一些 1024的倍数
}


http {
include /etc/nginx/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 /var/log/nginx/logs/access.log main;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;

#gzip on;

server {
listen 8080; #这里是监听端口
server_name localhost;

#charset koi8-r;

#access_log /var/log/nginx/host.access.log main;

location / {
root /var/www/html/; #这里是网站服务器的根目录,记得如果测试,请在该目录下面touch index.html 生成一个index.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$ { #这里是通过fastcgi来为NGINX开始php服务功能
root /var/www/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
#

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号