nginx經常使用命令和配置

1.經常使用命令
查看版本號:
./nginx -v
 
啓動nginx:在/usr/local/nginx/sbin 目錄下執行 
./nginx
 
關閉nginx:在/usr/local/nginx/sbin 目錄下執行
./nginx -s stop
 
重加載nginx:在/usr/local/nginx/sbin 目錄下執行
./nginx -s reload
 
2.nginx配置
nginx的默認安裝目錄爲:/usr/local/nginx;
nginx的主配置文件爲:nginx安裝目錄中conf目錄下的nginx.conf;
 
nginx.conf文件:
#user  nobody;
worker_processes  1;
 
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
 
#pid        logs/nginx.pid;
 
events {
    worker_connections  1024;
}
 
http {
    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"';
 
    #access_log  logs/access.log  main;
 
    sendfile        on;
    #tcp_nopush     on;
 
    #keepalive_timeout  0;
    keepalive_timeout  65;
 
    #gzip  on;
 
    server {
        listen       80;
        server_name  localhost;
 
        #charset koi8-r;
 
        #access_log  logs/host.access.log  main;
 
        location / {
            root   html;
            index  index.html index.htm;
        }
 
        #error_page  404              /404.html;
 
        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
 
        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}
 
        # 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
        #
        #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 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;
    #    }
    #}
 
 
}
 
 
能夠看到nginx配置文件能夠分爲3部分:1】全局塊;2】events塊;3】http塊;
 
1)全局塊
從配置文件開始到 events 塊之間的內容;
主要會設置一些影響 nginx 服務器總體運行的配置指令;
主要包括配置運行 Nginx 服務器的:
    用戶(組)、
    容許生成的 worker process 數、
    進程 PID 存放路徑、
    日誌存放路徑和類型
    以及配置文件的引入等。
 
例如:
worker_processes  1;
表示nginx能夠支持的併發處理量爲1;
這是 Nginx 服務器併發處理服務的關鍵配置,worker_processes 值越大,能夠支持的併發處理量也越多,可是會受到硬件、軟件等設備的制約;
 
2)events塊
events 塊涉及的指令主要影響 Nginx 服務器與用戶的網絡鏈接;
經常使用的設置包括:
    是否開啓對多 work process下的網絡鏈接進行序列化;
    是否容許同時接收多個網絡鏈接;
    選取哪一種事件驅動模型來處理鏈接請求;
    每一個 wordprocess 能夠同時支持的最大鏈接數等;
 
例如:
events {
    worker_connections  1024;
}
表示work process支持的最大鏈接數爲1024個;
 
3)http塊
這算是 Nginx 服務器配置中最頻繁的部分,代理、緩存和日誌定義等絕大多數功能和第三方模塊的配置都在這裏。
注意:http 塊也能夠包括 http 全局塊、 server 塊。
 
1】http全局塊
http 全局塊配置的指令包括:
    文件引入、
    MIME-TYPE 定義、
    日誌自定義、
    鏈接超時時間、
    單連接請求數上限等。
 
2】server 塊
一個 server 塊能夠配置多個 location 塊。
這塊的主要做用是
    基於 Nginx 服務器接收到的請求字符串(例如 server_name/uri-string),對虛擬主機名稱(也能夠是 IP 別名)以外的字符串(例如 前面的 /uri-string)進行匹配,
    對特定的請求進行處理。
    地址定向、數據緩存
    和應答控制等功能,
    還有許多第三方模塊的配置也在這裏進行。
 
例如:
server {
        listen       80;
        server_name  localhost;
   
        location / {
            root   html;
            index  index.html index.htm;
        }
    }
listen表示監聽的是80端口;
server_name 表示主機名稱是localhost,由於是本地;
location /表示當訪問的路徑知足location後的正則表達式時作一些請求跳轉;
相關文章
相關標籤/搜索