0x663

0x663

天地有大美而不言
github
steam
bilibili
discord server
youtube
douban
twitter
nintendo switch

Nginx 静态页面与路径配置

nginx location [PATTERN] 默认 / 指定为 nginx 文件夹下的 html 文件夹
如果 [PATTERN] 使用了其他值 /test ,不使用绝对路径的话,则会默认指向 nginx 文件夹下的 html 文件夹下面的 test 文件夹


# / 指向 /usr/local/nginx/html
  location / {
    root   html;
    #index  index.html index.htm;
    index  yu-index.html;
    charset utf-8;
  }

# /test 指向 /usr/local/nginx/html/test
  location /test {
    root   html;
    index  test.html;
    charset utf-8;
  }
加载中...
此文章数据所有权由区块链加密技术和智能合约保障仅归创作者所有。