服务器 -Windows10 nginx安装与配置,springboot使用nginx

目录

 

一:下载解压

二:配置

测试缓存配置有没有成功:

三、启动测试:

四、项目中测试

其他:


一:下载解压

http://nginx.org/en/download.html

二:配置

找到nginx.conf文件后打开:

我的修改后的全部:


#user  nobody;
worker_processes  1;

#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 {
    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       8087;
        server_name  localhost;
        charset uft-8;
        #charset koi8-r;


        #access_log  logs/host.access.log  main;

        location /images {
			alias  D:\Users\MACHENIKE\pic\housepic;
            #root   html;
            #index  index.html index.htm;
			expires      1d;
        }

        #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 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;
    #    }
    #}

}

前辈们的有注释的配置版本 :

#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类型,类型由mime.type文件定义
 
    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 指令指定 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 http://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   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;
 
    #    }
 
    #}
 
}

其他:设置编码: charset uft-8; 设置缓存过期时间为1天:expires      1d;   

记得写分号。

测试缓存配置有没有成功:

1、建议完成之后的步骤(步骤三、四、其他)再测试缓存。不然可能找不到访问静态文件的url。访问文件夹下的静态文件:

2、浏览器F12打开检查,选择network选项卡:↓ 。勾上关闭缓存,每次刷新,状态都返回200。

3、不勾上关闭缓存,刷新页面,然后发现返回的状态为304:↓ 。也就是成功使用了缓存。

4、查看缓存的时间:↓ 。为86400秒,正好一天,说明缓存配置正确。

三、启动测试:

cmd 进入Nginx解压目录 执行以下命令

start nginx : 启动nginx服务

查看是否启动 (启动后有两个PID会话 ): tasklist /fi "imagename eq nginx.exe" 

其他命令:

nginx -s reload  :修改配置后重新加载生效

nginx -s reopen  :重新打开日志文件
nginx -t -c /path/to/nginx.conf 测试nginx配置文件是否正确

验证配置是否正确: nginx -t

查看Nginx的版本号:nginx -V

启动Nginx:start nginx

快速停止或关闭Nginx:nginx -s stop

正常停止或关闭Nginx:nginx -s quit

配置文件修改重装载命令:nginx -s reload

start nginx 。

四、项目中测试

nginx里的配置:

springboot里的配置:

注意几个关键的东西的对应。↑

代码里,

存文件时:真实文件保存在file.path里,然后数据库储存 除了file.path,后面的文件夹和文件名。就是存后半部分

String path = StringUtils.substringAfterLast(localFile.getAbsolutePath(), filePath);

然后需要取出文件的时候,就这么使用 ↓ 。就是把文件的实际路径放进去。

最后取文件的时候要将nginx打开!

完成。

其他:

单独测试打开文件:

https://blog.csdn.net/kingscoming/article/details/79042874

https://blog.csdn.net/aaa333qwe/article/details/79461639

猜你喜欢

转载自blog.csdn.net/sinat_32238399/article/details/81905992
今日推荐