#user nobody;
#这个一般跟cpu的核数有关 4核 8线程 这里就配置8
worker_processes 1;
#表示的是全局的异常放置的地方
#error_log logs/error.log;
#也是全局错误存放的地方 notice:表示的是输出日志的格式(这里一般情况下不用改变)
#error_log logs/error.log notice;
#error_log logs/error.log info;
#进程号存放的地方(进程号的主要作用是用来 从启、关闭这些命令用的)
#pid logs/nginx.pid;
#最大连接数(这个跟硬件也有关系)
events {
worker_connections 1024;
}
#配置最多的就是在HTPP里面
http {
#包含的这种类型(nginx支持的数据类型)
include mime.types;
#默认的这个传输的数据类型
default_type application/octet-stream;
#定义了名字为main的这种数据格式
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
#局部请求日志存放的地方 main格式
access_log logs/access.log main;
#表示的是是否可以发送文件 on:打开
sendfile on;
#tcp_nopush on;
#keepalived连接的超时时间
#keepalive_timeout 0;
keepalive_timeout 65;
#默认的压缩格式
#gzip on;
server{
listen 9090;
server_name localhost;
location /{
root bobo;
index bobo.html;
}
}
#虚拟了一个服务
server {
#这个是服务的监听端口
listen 80;
#服务的名字
server_name localhost;
#默认的编码格式
#charset koi8-r;
#80这个请求的日志存放的地方
#access_log logs/host.access.log main;
#定义的映射规则 10.7.182.79:80/
location / {
#表示你如果当前路径是根路径下的 / 的话 那么会自动的访问到 根目录下的 html文件中去
root html;
#而且访问的是html文件中的 index.htm index.html
index index.html index.htm;
}
#出现404的时候 访问的页面
#error_page 404 /404.html;
#表示出现 500 502 503 504的时候访问的htnml
# 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 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}