0x663

0x663

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

Nginx Static Page and Path Configuration

nginx location [PATTERN] defaults to / and specifies the html folder under the nginx folder.

If [PATTERN] is set to /test and an absolute path is not used, it will default to the test folder under the html folder in the nginx folder.


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

# /test points to /usr/local/nginx/html/test
  location /test {
    root   html;
    index  test.html;
    charset utf-8;
  }
Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.