nginx 提供静态内容

发布时间 2023-07-28 11:03:54作者: 草木物语

创建资源:

 

nginx.conf

worker_processes  1;

events {
    worker_connections  1024;
}

http {
  server {

    location / {
      root /data/www;
    }

    location /images/ {
      root /data;
    }

  }
}

 

重新载入配置文件: 
/usr/local/nginx/sbin/nginx -s reload            # 重新载入配置文件

 

访问:

http://loc168/
http://loc168/images/estunLogo.png
http://loc168/images/estunLogo2.png