做爲一名前端開發者,使用nginx配置靜態web服務器是咱們常常使用的功能之一。此外對於nginx的其餘功能,好比說負載均衡,反向代理之類的咱們接觸的比較少。可是我認爲要想掌握nginx這一大利器,咱們就須要去多多瞭解他所具有的功能,以及nginx的設計架構和原理,而若是想要快速的掌握這塊,我以爲動手去使用nginx是最快的途徑之一。本章記錄下搭建nginx的過程。javascript
在開始搭建文件服務器以前咱們先要了解下實現這塊的相關api,在nginx模塊中有以下 ngx_http_autoindex_module,模塊處理以斜槓('/')結尾的請求,並生成目錄列表。css
apt install nginx
複製代碼
http{
server{
location /test{
alias /var/www; //目錄路徑
autoindex on;
}
}
}
複製代碼
nginx -t //返回ok則說名語法沒問題
nginx -s start
複製代碼
當咱們不知足於nginx自帶的文件服務器樣式時候,咱們可使用facyindex來從新格式化其目錄樣式,具體操做以下html
yum install https://extras.getpagespeed.com/redhat/7/x86_64/RPMS/nginx-module-fancyindex-1.12.0.0.4.1-1.el7.gps.x86_64.rpm
複製代碼
yum install nginx-module-fancyindex
複製代碼
load_module "modules/ngx_http_fancyindex_module.so";
複製代碼
//若是系統是ubuntu那比較簡單前端
sudo apt-get install nginx-extras
複製代碼
location /teset {
alias /var/www; //目錄路徑
fancyindex on; # Enable fancy indexes.
fancyindex_exact_size off; # Output human-readable file sizes.
}
複製代碼
//容許在生成的清單中插入指向CSS樣式表的連接。該連接將插入到內置CSS規則以後,所以您能夠覆蓋默認樣式。
fancyindex_css_href
//指定應該將哪一個文件插入到目錄清單的底部。若是設置爲空字符串,則發送模塊提供的默認頁腳。
fancyindex_footer
//指定應該將哪一個文件插入到目錄清單頭部。若是設置爲空字符串,則發送模塊提供的默認頁眉。
fancyindex_header
//指定將不會在生成的清單中顯示的文件名列表
fancyindex_ignore
//Enables showing file times as local time. Default is 「off」 (GMT time).
fancyindex_localtime
複製代碼
nginx -t
nginx -s reload
複製代碼
至此咱們能夠實現一個比默認格式更美觀的文件服務器,以下圖: java
這樣確定還不夠的,爲此咱們能夠引入個開源插件fancyindex-theme,這個提供了兩種主題light和dark我選擇了light主題進行搭建注:fancyindex-theme是基於fancyindex的插件,提供了更加優美的文件展現頁面。以及一些檢索操做。jquery
git clone https://github.com/Naereen/Nginx-Fancyindex-Theme
複製代碼
cp Nginx-Fancyindex-Theme-light /var/www/Nginx-Fancyindex-Theme-light
複製代碼
{
fancyindex_localtime on;
fancyindex_header "/Nginx-Fancyindex-Theme-light/header.html";
fancyindex_footer "/Nginx-Fancyindex-Theme-light/footer.html";
}
複製代碼
注:若是咱們在nginx中的配置location 爲/test,那咱們在引入fancyindex_header和fancyindex_footer是就要以下寫linux
{
fancyindex_header "/test/Nginx-Fancyindex-Theme-light/header.html";
fancyindex_footer "/test/Nginx-Fancyindex-Theme-light/footer.html";
}
複製代碼
另外在/Nginx-Fancyindex-Theme-light/footer.html和fancyindex_header "/Nginx-Fancyindex-Theme-light/header.html"文件中須要在引入外部文件的地方都加上前綴testnginx
<link rel="stylesheet" href="/test/Nginx-Fancyindex-Theme/styles.css">
<script type="text/javascript" src="/test/Nginx-Fancyindex-Theme/jquery.min.js"></script>
複製代碼
這個是由於nginx路由匹配規則致使。git
本節主要是瞭解下nginx在搭建靜態文件服務器中的使用,雖然默認的nginx文件模塊已經能知足咱們功能需求,但做爲一名前端工程是追求友好交互是必不可少的品質之一。另外,在這個大前端時代,對於前端開發來講掌握nginx那咱們就至關於在前端領域多了另外一種可能。github