您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關(guān)Nginx配置中運(yùn)行與啟動的步驟是怎樣的,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
我們在進(jìn)行Nginx配置的時候會出現(xiàn)很多不明白的地方,其實有些時候只要換一個思維的方式就能找多你要解決問題的方法。下面我們就向大家詳細(xì)的介紹有關(guān)Nginx配置的相關(guān)信息。
#運(yùn)行用戶 user nobody nobody; #啟動進(jìn)程 worker_processes 2; #全局錯誤日志及PID文檔 error_log logs/error.log notice; pid logs/Nginx.pid; #工作模式及連接數(shù)上限 events { use epoll; worker_connections 1024; } #設(shè)定http服務(wù)器,利用他的反向代理功能提供負(fù)載均衡支持 http { #設(shè)定mime類型 include conf/mime.types; default_type application/octet-stream; #設(shè)定日志格式 log_format main '$remote_addr - $remote_user [$time_local] ' '"$request" $status $bytes_sent ' '"$http_referer" "$http_user_agent" ' '"$gzip_ratio"'; log_format download '$remote_addr - $remote_user [$time_local] ' '"$request" $status $bytes_sent ' '"$http_referer" "$http_user_agent" ' '"$http_range" "$sent_http_content_range"'; #設(shè)定請求緩沖 client_header_buffer_size 1k; large_client_header_buffers 4 4k; #開啟gzip模塊 gzip on; gzip_min_length 1100; gzip_buffers 4 8k; gzip_types text/plain; output_buffers 1 32k; postpone_output 1460; #設(shè)定access log access_log logs/access.log main; client_header_timeout 3m; client_body_timeout 3m; send_timeout 3m; sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; #設(shè)定負(fù)載均衡的服務(wù)器列表 upstream mysvr { #weigth參數(shù)表示權(quán)值,權(quán)值越高被分配到的幾率越大 #本機(jī)上的Squid開啟3128端口 server 192.168.8.1:3128 weight=5; server 192.168.8.2:80 weight=1; server 192.168.8.3:80 weight=6; } #設(shè)定虛擬主機(jī) server { listen 80; server_name 192.168.8.1 www.yejr.com ; charset gb2312; #設(shè)定本虛擬主機(jī)的訪問日志 access_log logs/www.yejr.com.access.log main; #假如訪問 /img/*, /js/*, /css/* 資源,則直接取本地文檔,不通過squid #假如這些文檔較多,不推薦這種方式,因為通過squid的緩存效果更好 location ~ ^/(img|js|css)/ { root /data3/Html; expires 24h; } #對 "/" 啟用負(fù)載均衡 location / { proxy_pass http://mysvr; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; client_max_body_size 10m; client_body_buffer_size 128k; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffer_size 4k; proxy_buffers 4 32k; proxy_busy_buffers_size 64k; proxy_temp_file_write_size 64k; } #設(shè)定查看Nginx狀態(tài)的地址 location /NginxStatus { stub_status on; access_log on; auth_basic "NginxStatus"; auth_basic_user_file conf/htpasswd; } } }
備注:conf/htpasswd 文檔的內(nèi)容用 apache 提供的 htpasswd 工具來產(chǎn)生即可,內(nèi)容大致如下:
3.) 查看 Nginx 運(yùn)行狀態(tài) 輸入地址http://192.168.8.1/NginxStatus/ 。輸入驗證帳號密碼,即可看到類似如下內(nèi)容:
Active connections: 328 server accepts handled requests 9309 8982 28890 Reading: 1 Writing: 3 Waiting: 324
第一行表示現(xiàn)在活躍的連接數(shù),第三行的第三個數(shù)字表示Nginx運(yùn)行到。
以上就是Nginx配置中運(yùn)行與啟動的步驟是怎樣的,小編相信有部分知識點(diǎn)可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。