002 Nginx 基礎

_Tsun發表於2020-12-24

核心目錄

conf #配置檔案
	nginx.conf # 預設的配置檔案
	nginx.conf.default # 預設配置模板備份
	
html # 編譯安裝時,Nginx的預設站點目錄
	50x.html #錯誤頁面
	index.html # 預設首頁
	
logs # nginx預設日誌路徑
	error.log # 錯誤日誌
	nginx.pid # nginx程式號
	access.log #nginx訪問日誌
	
sbin # 程式目錄
	nginx # 啟動命令

常見命令

# 啟動
./nginx

# 重啟
./nginx -s reload

# 啟動 載入指定配置
./nginx -c /usr/local/nginx/conf/nginx.conf

# 停止
./nginx -s stop

# 檢查配置檔案正確性
./nginx -t 

# 檢查指定配置檔案正確性
./nginx -t  -c /usr/local/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 {
    use epoll; # linux加上這個, 採用epoll模式
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    # 預設的日誌模版叫man
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';

    # 使用man日誌模版
    #access_log  logs/access.log  main;

    # sendfile 開啟高效傳輸
    sendfile        on;
    # 
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65; # 連線的超時時間

    #gzip  on; # 壓縮,省頻寬,耗效能

    # server [port] --> localtion[uri] -->
    server {
        listen       80;
        server_name  localhost; # 域名,可以寫多個 空格隔開

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        # 訪問 /, 先到html目錄下找到index.html 找不到就找index.htm
        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;
    #    }
    #}

}

相關文章