我已經安裝了nginx反向代理+apache2+mod_php。
我如何驗證我是否已做好一切準備,並且 nginx 僅適用於靜態內容,而 apache2 僅適用於 php?
Web 應用程式是 Magento。因此只有 1 個入口點 - index.php,並且在 index.php 中包含所有統計資料。
答案1
使用類似的東西螢火蟲檢查 HTTP 回應標頭。它們應該在標頭中包含產生回應的 HTTP 伺服器軟體的名稱Server
。
或者,更簡單地,使用curl
:
curl -s -D - "http://<URL of some static content>/" | grep "^Server:"