windows下安装配置Nginx详解
windows 下安装配置 Nginx 详解
nginx功能之⼀可以启动⼀个本地服务器,通过配置server_name和root⽬录等来访问⽬标⽂件
尽管通过这种⽅式能实现分布式⽂件存储,但也存在弊端,就是FTP很容易被⼊侵,⽽且⼩型的⽹站使⽤FTP作为⽂件服务器是没问题的,但是项⽬访问量持续增加的话,必要考虑⽂件服务器的扩展性与⾼可⽤,⽬前成熟的⽂件服务器也有很多,例如FastDFS,可以快速的进⾏线性扩容。
1.下载Nginx
下载后解压,如下图:
2.Nginx配置
到 conf ⽬录⾥的 f ⽂件,配置Nginx
2.1.基本配置如下:
#user nobody;
#指定nginx进程数
worker_processes 1;
#全局错误⽇志及PID⽂件
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
# 连接数上限
worker_connections 1024;
}
#设定http服务器,利⽤它的反向代理功能提供负载均衡⽀持
http {
#设定mime类型,类型由pe⽂件定义
include pes;
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 指令指定 nginx 是否调⽤ sendfile 函数(zero copy ⽅式)来输出⽂件,对于普通应⽤,
sendfile on;
#tcp_nopush on;
#连接超时时间
#keepalive_timeout 0;
keepalive_timeout 65;
#开启gzip压缩,压缩html
#gzip on;
#设定负载均衡的服务器列表⽀持多组的负载均衡,可以配置多个upstream 来服务于不同的Server.
#nginx 的 upstream ⽀持⼏种⽅式的分配
#1)、轮询(默认)每个请求按时间顺序逐⼀分配到不同的后端服务器,如果后端服务器down掉,能⾃动剔除。
#2)、weight 指定轮询⼏率,weight和访问⽐率成正⽐,⽤于后端服务器性能不均的情况。跟上⾯样,指定了权重。 #3)、ip_hash 每个请求按访问ip的hash结果分配,这样每个访客固定访问⼀个后端服务器,可以解决session的问题。 #4)、fair
#5)、url_hash #Urlhash
upstream mysvr {
#weigth参数表⽰权值,权值越⾼被分配到的⼏率越⼤
#1.down 表⽰单前的server暂时不参与负载
#2.weight 默认为1.weight越⼤,负载的权重就越⼤。
#3.backup:其它所有的⾮backup机器down或者忙的时候,请求backup机器。所以这台机器压⼒会最轻。
#server 192.168.1.116 down;
#server 192.168.1.116 backup;
server 192.168.1.121 weight=1;
server 192.168.1.122 weight=2;
#配置代理服务器的地址,即Nginx安装的服务器地址、监听端⼝、默认地址
server {
#1.侦听80端⼝
listen 80;
#对于server_name,如果需要将多个域名的请求进⾏反向代理,可以配置多个server_name来满⾜要 server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
# 默认主页⽬录在nginx安装⽬录的html⼦⽬录。
root html;
index index.html index.htm;
proxy_pass mysvr; #跟载均衡服务器的upstream对应
}
#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 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 onenginx 配置文件
#
#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;
# }
#}
}
2.2.server配置
2.3.可以配置多个server
如下,这样访问localhost 就能访问到了 D:/source ⽬录。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论