son30 发表于 2018-11-13 11:42:51

nginx作为静态资源服务器的配置

  在http模块添加:
  server {
  listen 80;
  server_name localhost;
  location /www/ {
  root /data/;
  index index.html index.htm;
  }
  location /image/ {
  root /data/;
  autoindex on;
  }
  }
  创建目录,拷贝文件
  mkdir -p /data/www
  mkdir /data/image
  cp yellow.jpg /data/image
  cp index.html /data/www

  nginx -s>  浏览器访问:
  http://localhost/www/index.html
  http://localhost/image/yellow.jpg

页: [1]
查看完整版本: nginx作为静态资源服务器的配置