成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

Nginx深入了解-基礎(chǔ)(二)

Hegel_Gu / 3155人閱讀

yum安裝nginx后可通過命令rpm -pl nginx查看相關(guān)的安裝目錄。如下:
路徑 類型 作用
/etc/logrotate.d/nginx 配置文件 Nginx日志輪轉(zhuǎn),用于logrotate服務(wù)的日志切割
/etc/nginx /etc/nginx/nginx.conf /etc/nginx/conf.d /etc/nginx/conf.d/default.conf 目錄,配置文件 nginx主配置文件
/etc/nginx/fastcgi_params /etc/nginx/uwsgi_params /etc/nginx/scgi_params 配置文件 cgi配置相關(guān),fastcgi配置
/etc/nginx/koi-utf /etc/nginx/koi-win /etc/nginx/win-utf 配置文件 編碼轉(zhuǎn)換映射轉(zhuǎn)換文件
/etc/nginx/mime.types 配置文件 設(shè)置http協(xié)議的content-type與擴(kuò)展名對應(yīng)關(guān)系
/usr/lib/systemd/system/nginx-debug.service /usr/lib/systemd/system/nginx.service /etc/sysconfig/nginx /etc/sysconfig/nginx-debug 配置文件 用于配置系統(tǒng)守護(hù)進(jìn)程管理器管理方式
/usr/lib64/nginx/modules /etc/nginx/modules 目錄 nginx模塊目錄
/usr/sbin/nginx /usr/sbin/nginx-debug 命令 nginx服務(wù)的啟動管理的終端命令
/usr/share/doc/nginx-版本號 /usr/share/doc/nginx-版本號/COPYRIGHT /usr/share/man/man8/nginx.8.gz 文件、目錄 nginx手冊、幫助文件
/var/cache/nginx 目錄 nginx的緩存目錄,nginx布景可以用作服務(wù)代理,還可以用來做緩存服務(wù)
/var/log/nginx 目錄/nginx日志目錄

使用nginx -V查看配置參數(shù):

configure arguments: --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-mail --with-mail_ssl_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic -fPIC" --with-ld-opt="-Wl,-z,relro -Wl,-z,now -pie"
編譯選項(xiàng) 作用
--prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock 安裝目的目錄或路徑
--http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp 執(zhí)行對應(yīng)的模塊時,nginx所保留的臨時性文件
--user=nginx --group=nginx 設(shè)定nginx進(jìn)程啟動的用戶和用戶組
nginx.conf的配置相關(guān)

第一塊:

參數(shù) 說明
user 設(shè)置nginx服務(wù)的系統(tǒng)使用用戶
worker_processes 工作進(jìn)程數(shù),與cpu核數(shù)保持一致
error_log nginxd的錯誤日志
pid nginx服務(wù)啟動時候的pid

第二塊:

模塊 參數(shù) 說明
events worker_connections 每個進(jìn)程允許最大連接數(shù)
use 工作進(jìn)程數(shù)

第三塊:

http {
    include       /etc/nginx/mime.types; // http的content-type設(shè)置
    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  /var/log/nginx/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    keepalive_timeout  65;

    #gzip  on;
    // 標(biāo)準(zhǔn)的方式是將多個server配置成多個.conf文件放在/etc/nginx/conf.d下include進(jìn)來
    #include /etc/nginx/conf.d/*.conf;
    server {
        listen 80;
        server_name localhost;
        
        localtion / {
            root ....
            index ....
        }
        
        error_page ....
        localtion = /50x.tml {
            .....
        }
    }
    
    server {
        ....
    }
    server {
        ....
    }
}

log_format定義access_log的日志內(nèi)容格式,可自定義。例如添加user_agent信息:$http_User_Agent.

文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請注明本文地址:http://systransis.cn/yun/40034.html

相關(guān)文章

  • PHP程序員學(xué)習(xí)路線

    摘要:第一階段基礎(chǔ)階段基礎(chǔ)程序員重點(diǎn)把搞熟練核心是安裝配置基本操作目標(biāo)能夠完成基本的系統(tǒng)安裝,簡單配置維護(hù)能夠做基本的簡單系統(tǒng)的開發(fā)能夠在中型系統(tǒng)中支持某個功能模塊的開發(fā)。本項(xiàng)不做重點(diǎn)學(xué)習(xí),除非對前端有興趣。 第一階段:基礎(chǔ)階段(基礎(chǔ)PHP程序員) 重點(diǎn):把LNMP搞熟練(核心是安裝配置基本操作) 目標(biāo):能夠完成基本的LNMP系統(tǒng)安裝,簡單配置維護(hù);能夠做基本的簡單系統(tǒng)的PHP開發(fā);能夠在P...

    genedna 評論0 收藏0
  • Nginx深入了解-基礎(chǔ)(四)

    摘要:方式二結(jié)合模塊方式三通過自定義變量傳遞官方文檔使用文件密碼信息按照官網(wǎng)可以使用方式生成對應(yīng)的文件配置局限性一,用戶信息依賴文件二,操作管理機(jī)械,效率低下解決方式一,使用實(shí)現(xiàn)驗(yàn)證二,和打通,利用模塊 Nginx的訪問控制。有兩種方式可以來進(jìn)行webserver的訪問控制:一種是基于IP的訪問控制-http_access_module;另一種是基于用戶的信任登錄-http_auth_bas...

    EddieChan 評論0 收藏0
  • 寫這么多系列博客,怪不得找不到女朋友

    摘要:前提好幾周沒更新博客了,對不斷支持我博客的童鞋們說聲抱歉了。熟悉我的人都知道我寫博客的時間比較早,而且堅(jiān)持的時間也比較久,一直到現(xiàn)在也是一直保持著更新狀態(tài)。 showImg(https://segmentfault.com/img/remote/1460000014076586?w=1920&h=1080); 前提 好幾周沒更新博客了,對不斷支持我博客的童鞋們說聲:抱歉了!。自己這段時...

    JerryWangSAP 評論0 收藏0
  • 如何"有計(jì)劃,高效率,優(yōu)簡歷"應(yīng)對面試

    摘要:雖然有了十全的計(jì)劃,但如何高效率去記住上面那么多東西是一個大問題,看看我是怎么做的。 前言 前一篇文章講述了我在三月份毫無準(zhǔn)備就去面試的后果,一開始心態(tài)真的爆炸,但是又不服氣,一想到每次回來后家人朋友問我面試結(jié)果的期待臉,越覺得必須付出的行動來證明自己了。 面經(jīng)傳送門:一個1年工作經(jīng)驗(yàn)的PHP程序員是如何被面試官虐的? 下面是我花費(fèi)兩個星期做的準(zhǔn)備,主要分三部分: 有計(jì)劃——計(jì)劃好...

    gyl_coder 評論0 收藏0

發(fā)表評論

0條評論

最新活動
閱讀需要支付1元查看
<