nginx 靜態伺服器搭建

weixin_33766168發表於2015-07-27

本文儘可能用命令(而不是文字)說話。且,本教程親和windows。因為我的座駕就是windows。但是命令列用的cmder,因為使用命令的話我喜歡*nix的。下一個最大的cmder包,底下的命令都可以支援執行。

先弄到 nginx :

$curl http://nginx.org/download/nginx-1.8.0.zip -O

解壓執行:

$ unzip  nginx-1.8.0.zip
$ cd nginx-1.8.0/
$ nginx 

檢視效果:

$ curl localhost

<!DOCTYPE html>
...
<h1>Welcome to nginx!</h1>
...

建立一大檔案50M,丟進html靜態目錄:

$fsutil file createnew largedummy.bin 52428800
$mv largedummy.bin nginx-1.8.0\html\
$curl localhost/largdummy.bin -O

下個大檔案

λ curl localhost/largedummy.bin -O
% Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                             Dload  Upload   Total   Spent    Left  Speed
100 50.0M  100 50.0M    0     0  22.8M      0  0:00:02  0:00:02 --:--:-- 22.8M    

現在,我們的nginx可以把nginx\html作為根目錄,資料夾內部的一切靜態檔案都可以被下載。


附送幾條實用命令

檢視程式:

λ ttasklist /fi "imagename eq nginx.exe"

映像名稱                       PID 會話名              會話#       記憶體使用
========================= ======== ================ =========== ============
nginx.exe                     5216 Console                    1      6,316 K
nginx.exe                     5416 Console                    1      6,012 K

退出的方法:

nginx -s stop 快速退出
nginx -s quit 優雅退出

重新裝入配置檔案:

nginx -s reload 更換配置並啟動新的工作程式

相關文章