Nginx发布静态资源

Nginx发布静态资源

  • 一、步骤
  • 二、实现发布html文件
    • 1.创建html资源目录
    • 2.配置Nginx配置文件
    • 3.启动Nginx
    • 4.启动成功
    • 5.注意

一、步骤

  1. 将准备好的静态资源文件放在指定文件夹
  2. 更改nginx的配置文件:nginx.conf
  3. 启动nginx服务:start nginx (一定要切换到nginx的目录下)
  4. 在浏览器中检查是否发布成功

二、实现发布html文件

1.创建html资源目录

Nginx发布静态资源_第1张图片

2.配置Nginx配置文件

Nginx发布静态资源_第2张图片

#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 {
     gzip  on;

    #静态文件
    server {
        listen       8080;
        server_name  localhost;

        location / {
            root   D:/resources/statichtmls;
        }
    }

    #html文件
    server {
       #Nginx端口号
        listen       8080;
        server_name  127.0.0.1 localhost;

        location / {
            #Nginx配置静态资源路径
            root   D:/resources/statichtmls;
            #Nginx首页规范
            index  index.html index.htm; 
        }
    }
}
 

3.启动Nginx

Nginx发布静态资源_第3张图片

4.启动成功

Nginx发布静态资源_第4张图片

5.注意

备注:测试完成后记得一定要关闭Nginx
关闭指令nginx -s stop

你可能感兴趣的:(Nginx,nginx)