一個重要的Web伺服器任務是提供檔案(如圖片或靜態HTML頁面)。
根據請求,檔案將從不同的本機目錄提供:/data/www(可能包含HTML檔案)和/ data/images(包含映像)。這將需要編輯配置文件,並使用兩個位置區塊在http區塊內設定伺服器區塊。 ( 建議學習:nginx使用 )
首先,建立/data/www目錄,並將一個包含任何文字內容的index.html檔案放入其中,並建立/ data/images目錄並在其中放置一些圖像。 建立兩個目錄-
[root@localhost ~]# mkdir -p /data/www [root@localhost ~]# mkdir -p /data/images [root@localhost ~]#
分別在上面建立的兩個目錄中放入兩個檔案:/data/www/index.html 和/data/images/logo.png,/data /www/index.html檔案的內容就一行,如下-
<h2> New Static WebSite Demo.</h2>
接下來,開啟設定檔(/usr/local/nginx/conf/nginx.conf)。預設的設定檔已經包含了伺服器區塊的幾個範例,大部分是註解掉的。現在註解掉所有這樣的區塊,並啟動一個新的伺服器區塊:
http { server { } }
通常,設定檔可以包括伺服器監聽的連接埠和伺服器名稱區分的幾個server區塊。當nginx決定哪個伺服器處理請求後,它會根據服務器區塊內部定義的location指令的參數測試請求頭中指定的URI。
將下列location區塊新增至伺服器(server)區塊:
http { server { location / { root /data/www; } } }
該location區塊指定與請求中的URI相比較的「/」前綴。對於匹配請求,URI將被加入到root指令中指定的路徑(即/data/www),以形成本機檔案系統上所請求檔案的路徑。如果有幾個匹配的location塊,nginx將選擇具有最長前綴來匹配location塊。上面的location塊提供最短的前綴長度為1,因此只有當所有其他location塊不能提供匹配時,才會使用該塊。
接下來,新增第二個location區塊:
http { server { location / { root /data/www; } location /images/ { root /data; } } }
它將是以/images/(位置/也匹配這樣的請求,但具有較短前綴,也就是「/images/」比「/」長)的請求來匹配。
server區塊的最終配置應如下所示:
server { location / { root /data/www; } location /images/ { root /data; } }
這已經是一個在標準連接埠80上偵聽並且可以在本機上存取的伺服器( http://localhost/ )的工作配置。回應以/images/開頭的URI的請求,伺服器將從/data/images目錄發送檔案。例如,回應http://localhost/images/logo.png請求,nginx將發送服務上的/data/images/logo.png檔案。如果檔案不存在,nginx將發送一個指示404錯誤的回應。不以/images/開頭的URI的請求將會對應到/data/www目錄。例如,當回應http://localhost/about/example.html請求時,nginx將發送/data/www/about/example.html檔案。
要套用新配置,如果尚未啟動nginx或透過執行下列命令將重載訊號傳送到nginx的主程序:
[root@localhost ~]# /usr/local/nginx/sbin/nginx -t nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful [root@localhost ~]# /usr/local/nginx/sbin/nginx -s reload
如果錯誤或例外導致無法正常工作,可以嘗試查看目錄/usr/local/nginx/logs或/var/log/nginx中的access.log和error.log檔案中尋找原因。
開啟瀏覽器或使用CURL存取Nginx伺服器如下所示-
#完整的nginx.conf檔案設定內容如下:
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; #log_format main '$remote_addr - $remote_user [$time_local] "$request" ' # '$status $body_bytes_sent "$http_referer" ' # '"$http_user_agent" "$http_x_forwarded_for"'; #access_log logs/access.log main; sendfile on; #tcp_nopush on; #keepalive_timeout 0; keepalive_timeout 65; #gzip on; ## 新服务(静态网站) server { location / { root /data/www; } location /images/ { root /data; } } }
以上是使用nginx提供靜態內容服務的詳細內容。更多資訊請關注PHP中文網其他相關文章!