#定義nginx執行的使用者和使用者組
#user nobody nobody;
#nginx程序數,建議設定為等於cpu總核心數
worker_processes 2;
#error_log logs/error.log;
# 全域性錯誤日誌定義型別
error_log logs/error.log notice;
#error_log logs/error.log info;
#程序檔案
pid logs/nginx.pid;
events
#gzip on;
#服務註冊(每乙個server都是乙個單獨的服務)
server
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#報錯頁面配置
error_page 500 502 503 504 /50x.html;
location = /50x.html
#檢視nginx狀態
#location /nginxstatus
}
qemu linux映象包,可直接使用
1 qemu的大略引數的大略使用方法 2 debian的qemu qcow2直接載入包 2.1 包含了amd64的wheezy和squeeze版本。摘錄其中一段 when run on an amd64 host with hardware virtualization,and when the k...
Nginx簡單配置與使用
匹配優先順序 與location在配置檔案中的順序無關 官方優先順序文件 示例 location url匹配示例 和負載均衡的應用 通過iis部署兩個簡單的站點 站點1 站點2 修改配置檔案nginx.conf d nginx nginx 1.17.4 nginx.conf 重啟nginx服務 訪問...
Nginx的簡單配置
這是乙個nginx的簡單配置,只滿足輸入網域名稱,就可以跳到專案路徑中。省去還要輸入埠和路徑。1.1 windows 上安裝nginx 執行nginx,兩種方式 3 檢查是否成功安裝nginx 在瀏覽器中輸入 localhost 80 出現wellcome to nginx 頁面變成功了。2.1 d...