openresty的安裝及使用基於CentOS

【yum安裝】
(網速的緣由,可能會失敗,多試幾回)
#yum install yum-utils
#yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo
#yum install openresty
默認會安裝到/usr/local/openresty/ 這個目錄下
**************yum方式安裝至此完***************
【配置帳號密碼登陸auth_basic_user_file】
用htpasswd 生成登陸祕鑰文件:
# htpasswd -bc pw.db aaa bbb
用戶名爲aaa密碼爲bbb生成的祕鑰文件爲pw.db
nginx中配置以下,見auth_basic部分:html

location / {
            root   html;
            index  index.html index.htm;
            auth_basic "secure1";
            auth_basic_user_file /usr/local/openresty/nginx/pw.db;
        }

#/usr/local/openresty/nginx/sbin/nginx -t
#/usr/local/openresty/nginx/sbin/nginx -s reload
此時方位剛剛搭建好的nginx服務,提示須要受權才能夠登陸。nginx


【經常使用命令】
1.查看nginx加載的模塊
./nginx/sbin/nginx -V
2.查看nginx加載的版本
./nginx/sbin/nginx -v


【源碼安裝】
#wget https://openresty.org/download/openresty-1.15.8.1.tar.gz
#tar -xzvf openresty-VERSION.tar.gz
#cd openresty-1.15.8.1/
#./configure --prefix=/opt/openresty
#make
#make install
【官網】
http://openresty.org/cn/download.htmlcentos

相關文章
相關標籤/搜索