国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Nginx深入了解-基礎(二)

Hegel_Gu / 3143人閱讀

yum安裝nginx后可通過命令rpm -pl nginx查看相關的安裝目錄。如下:
路徑 類型 作用
/etc/logrotate.d/nginx 配置文件 Nginx日志輪轉,用于logrotate服務的日志切割
/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配置相關,fastcgi配置
/etc/nginx/koi-utf /etc/nginx/koi-win /etc/nginx/win-utf 配置文件 編碼轉換映射轉換文件
/etc/nginx/mime.types 配置文件 設置http協議的content-type與擴展名對應關系
/usr/lib/systemd/system/nginx-debug.service /usr/lib/systemd/system/nginx.service /etc/sysconfig/nginx /etc/sysconfig/nginx-debug 配置文件 用于配置系統守護進程管理器管理方式
/usr/lib64/nginx/modules /etc/nginx/modules 目錄 nginx模塊目錄
/usr/sbin/nginx /usr/sbin/nginx-debug 命令 nginx服務的啟動管理的終端命令
/usr/share/doc/nginx-版本號 /usr/share/doc/nginx-版本號/COPYRIGHT /usr/share/man/man8/nginx.8.gz 文件、目錄 nginx手冊、幫助文件
/var/cache/nginx 目錄 nginx的緩存目錄,nginx布景可以用作服務代理,還可以用來做緩存服務
/var/log/nginx 目錄/nginx日志目錄

使用nginx -V查看配置參數:

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"
編譯選項 作用
--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 執行對應的模塊時,nginx所保留的臨時性文件
--user=nginx --group=nginx 設定nginx進程啟動的用戶和用戶組
nginx.conf的配置相關

第一塊:

參數 說明
user 設置nginx服務的系統使用用戶
worker_processes 工作進程數,與cpu核數保持一致
error_log nginxd的錯誤日志
pid nginx服務啟動時候的pid

第二塊:

模塊 參數 說明
events worker_connections 每個進程允許最大連接數
use 工作進程數

第三塊:

http {
    include       /etc/nginx/mime.types; // http的content-type設置
    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;
    // 標準的方式是將多個server配置成多個.conf文件放在/etc/nginx/conf.d下include進來
    #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的日志內容格式,可自定義。例如添加user_agent信息:$http_User_Agent.

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/40034.html

相關文章

  • PHP程序員學習路線

    摘要:第一階段基礎階段基礎程序員重點把搞熟練核心是安裝配置基本操作目標能夠完成基本的系統安裝,簡單配置維護能夠做基本的簡單系統的開發能夠在中型系統中支持某個功能模塊的開發。本項不做重點學習,除非對前端有興趣。 第一階段:基礎階段(基礎PHP程序員) 重點:把LNMP搞熟練(核心是安裝配置基本操作) 目標:能夠完成基本的LNMP系統安裝,簡單配置維護;能夠做基本的簡單系統的PHP開發;能夠在P...

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

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

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

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

    JerryWangSAP 評論0 收藏0
  • 如何"有計劃,高效率,優簡歷"應對面試

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

    gyl_coder 評論0 收藏0

發表評論

0條評論

Hegel_Gu

|高級講師

TA的文章

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