日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費(fèi)收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點(diǎn)擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會(huì)員:747

  • Nginx配置文件詳解
#啟動(dòng)子進(jìn)程程序默認(rèn)用戶
#user  nobody;
#一個(gè)主進(jìn)程和多個(gè)工作進(jìn)程。工作進(jìn)程是單進(jìn)程的,且不需要特殊授權(quán)即可運(yùn)行;這里定義的是工作進(jìn)程數(shù)量
worker_processes  1;

#全局錯(cuò)誤日志的位置及日志格式
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    #每個(gè)工作進(jìn)程最大的并發(fā)數(shù)
    worker_connections  1024;
}


#http服務(wù)器設(shè)置
http {
    #設(shè)定mime類型,類型由mime.type文件定義
    include       mime.types;

    #
    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"';
    #$remote_addr與$http_x_forwarded_for用以記錄客戶端的ip地址;
    #$remote_user:用來記錄客戶端用戶名稱;
    #$time_local: 用來記錄訪問時(shí)間與時(shí)區(qū);
    #$request: 用來記錄請求的url與http協(xié)議;
    #$status: 用來記錄請求狀態(tài);成功是200,
    #$body_bytes_sent :記錄發(fā)送給客戶端文件主體內(nèi)容大小;
    #$http_referer:用來記錄從那個(gè)頁面鏈接訪問過來的;
    #$http_user_agent:記錄客戶瀏覽器的相關(guān)信息;

    #全局訪問日志路徑 
    #access_log  logs/access.log  main;
    #sendfile指令指定 nginx 是否調(diào)用sendfile 函數(shù)(zero copy 方式)來輸出文件,對于普通應(yīng)用,必須設(shè)為on。如果用來進(jìn)行下載等應(yīng)用磁盤IO重負(fù)載應(yīng)用,可設(shè)置為off,以平衡磁盤與網(wǎng)絡(luò)IO處理速度,降低系統(tǒng)uptime。
    sendfile        on;

    #此選項(xiàng)可以減少網(wǎng)絡(luò)報(bào)文段的數(shù)量
    #tcp_nopush     on;

    #長連接超時(shí)時(shí)間
    #keepalive_timeout  0;
    keepalive_timeout  65;

    #開啟壓縮
    #gzip  on;

    #配置虛擬主機(jī)
    server {
        #虛擬主機(jī)使用的端口
        listen       80;
        #虛擬主機(jī)域名
        server_name  localhost;

        #虛擬主機(jī)支持的字符集
        #charset koi8-r;

        #虛擬主機(jī)的訪問日志路徑
        #access_log  logs/host.access.log  main;

        #定義web根路徑
        location / {
            #根目錄路徑
            root   html;
            #索引頁
            index  index.html index.htm;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #

        #根據(jù)錯(cuò)誤碼 返回對應(yīng)的頁面
        error_page   500 502 503 504  /50x.html;

        #定義頁面路徑
        location = /50x.html {
            root   html;
        }

        #定義反向代理服務(wù)器 數(shù)據(jù)服務(wù)器是lamp模型
        # proxy the php scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ .php$ {
        #    proxy_pass   http://127.0.0.1;
        #}


        #定義PHP為本機(jī)服務(wù)的模型  
        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ .php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache's document root
        # concurs with nginx's one
        #
        #拒絕nginx DR目錄及子目錄下的.htaccess文件訪問
        #location ~ /.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    #https的配置方案
    # HTTPS server
    #
    #server {
    #    listen       443 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

總結(jié)

nginx的主配置文件

重點(diǎn):nginx的主配置文件中的字段含義及格式

難點(diǎn):修改時(shí)注意格式問題

分享到:
標(biāo)簽:nginx
用戶無頭像

網(wǎng)友整理

注冊時(shí)間:

網(wǎng)站:5 個(gè)   小程序:0 個(gè)  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會(huì)員

趕快注冊賬號(hào),推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨(dú)大挑戰(zhàn)2018-06-03

數(shù)獨(dú)一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運(yùn)動(dòng)步數(shù)有氧達(dá)人2018-06-03

記錄運(yùn)動(dòng)步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定