linux系統下nginx入門教程

2021-12-30 10:48:49 字數 569 閱讀 8687

nginx預設配置屬性

########### 每個指令必須有分號結束。#################

#全域性塊

#user administrator administrators; #配置使用者或者組,預設為nobody nobody。

#worker_processes auto; #允許生成的程序數,預設為1,

#pid /nginx-1.15.0/nginx.pid; #指定nginx程序執行檔案存放位址

error_log log/error.log debug; #制定日誌路徑,級別。這個設定可以放入全域性塊,http塊,server塊,級別以此為:debug|info|notice|warn|error|crit|alert|emerg

include /nginx/conf/conf.d/*.conf;

#events塊

error_page 404 #錯誤頁

server

}#https配置

server

}server

}

Linux系統下安裝nginx

cd usr src wget tar xvf nginx 1.12.0.tar.gz cd nginx 1.12.0 configure prefix usr local nginx 安裝ssl模組 支援https shell configure prefix usr local nginx wi...

linux系統下安裝nginx

首先連線到linux,切換至root使用者,並cd至usr local目錄下,在該目錄下使用如下命令新建nginx資料夾 使用如下命令給資料夾授權 給local賦予讀寫許可權 chmod 777 nginx 給local及其以下子目錄賦予讀寫許可權 進入解壓出來的目錄後,在編譯安裝前需要先使用如下命...

Linux系統下離線安裝Nginx

1 作業系統 centos 7.3 2 nginx 1.12.01 安裝nginx rpm ivh nginx 1.12.0 1.el7.ngx.x86 64.rpm2 啟動nginx usr sbin nginx3 瀏覽器檢視 nginx安裝完畢之後有乙個預設頁面,我們可以訪問ip 80埠開啟ng...