root&alias檔案路徑設定
nginx指定檔案路徑有兩種方式root和alias,這兩者的用法區別,使用方法總結了下,方便大家在應用過程中,快速回應。 root與alias主要區別在於nginx如何解釋location後面的uri,這會使兩者分別以不同的方式將請求映射到伺服器檔案上。
[root]
語法:root path
預設值:root html
設定段:http、server、location、if
[alias]
語法:alias path
#配置段:location
實例:
location ~ ^/weblogs/ { root /data/weblogs/www.jb51.net; autoindex on; auth_basic "restricted"; auth_basic_user_file passwd/weblogs; }
如果一個請求的uri是/weblogs/httplogs/www.jb51.net-access.log時,web伺服器將會傳回伺服器上的/data/weblogs /www.jb51.net/weblogs/httplogs/www.jb51.net-access.log的檔案。
root會根據完整的uri請求來映射,也就是/path/uri。 [
因此,前面的請求對應為path/weblogs/httplogs/www.jb51.net-access.log。
location ^~ /binapp/ { limit_conn limit 4; limit_rate 200k; internal; alias /data/statics/bin/apps/; }
alias會把location後面配置的路徑丟棄掉,把目前配對到的目錄指向到指定的目錄。如果一個要求的uri是/binapp/a.jb51.net/favicon時,web伺服器將會傳回伺服器上的/data/statics/bin/apps/a.jb51.net/favicon.jgp的檔案。
1. 使用alias時,目錄名稱後面一定要加"/"。
2. alias可以指定任何名稱。
3. alias在使用正規匹配時,必須捕捉要匹配的內容並在指定的內容處使用。
4. alias只能位於location區塊中。
索引目錄配置
為了簡單共享文件,有些人使用svn,有些人使用ftp,但是更多得人使用索引(index)功能。 apache得索引功能強大,而且也是最常見得,nginx得auto_index實作得目錄索引偏少,而且功能非常簡單。先來看看我們得效果圖。
nginx設定
location ~ ^/2589(/.*) { autoindex on; //开启 autoindex_localtime on;//开启显示功能 }
以上是Nginx中的root&alias檔案路徑及索引目錄怎麼配置的詳細內容。更多資訊請關注PHP中文網其他相關文章!