官網(wǎng)下載地址
源城網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián),源城網(wǎng)站設(shè)計(jì)制作,有大型網(wǎng)站制作公司豐富經(jīng)驗(yàn)。已為源城上千家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設(shè)公司要多少錢(qián),請(qǐng)找那個(gè)售后服務(wù)好的源城做網(wǎng)站的公司定做!
2.1安裝前提
在linux下安裝需要安裝一下組件
1. gcc && g++ yum install gcc-c++ 2. pcre yum install -y pcre pcre-devel 3. zlib yum install -y zlib zlib-devel 4. openssl yum install -y openssl openssl-devel
2.2 安裝
1. 解壓nginx文件 tar -zxvf nginx-1.17.5.tar.gz 2. 安裝 ## 創(chuàng)建一個(gè)nginx安裝目錄 mkdir nginx cd nginx-1.12.2 ## 指定文件安裝路徑 ./configure --prefix=/home/lege/nginx make make install #安裝完成后內(nèi)容會(huì)安裝到指定的路徑 /home/lege/nginx下,否則會(huì)在默認(rèn)目錄/usr/local/nginx
2.3 啟動(dòng)nginx
## 修改配置文件 cd /home/lege/nginx/conf vim nginx.conf ## 設(shè)置端口為8080,也可設(shè)置成其他 listen 8080; ## 進(jìn)入到啟動(dòng)目錄 cd /home/lege/nginx/sbin ## 檢查配置文件是否有問(wèn)題 ./nginx -t ##沒(méi)有問(wèn)題的結(jié)果如下所示: [soa@testsoa04 sbin]$ ./nginx -t nginx: the configuration file /home/lege/nginx/conf/nginx.conf syntax is ok nginx: configuration file /home/lege/nginx/conf/nginx.conf test is successful [soa@testsoa04 sbin]$ ## 查詢(xún)配置參數(shù) ./nginx -V ## 對(duì)于已安裝的nginx需要修改配置參數(shù) ./configure --prefix=/home/lege/nginx ...配置參數(shù) make make install 然后重新啟動(dòng)nginx即可 ## 啟動(dòng) ./nginx ## 停止 ./nginx -s stop ## 重啟 ./nginx -s reload ## 輸入網(wǎng)址驗(yàn)證是否啟動(dòng)成功 http://ip:port/
日志定義的格式: 語(yǔ)法格式: access_log path [format [buffer=size] [gzip[=level]] [flush=time] [if=condition]]; access_log off; 默認(rèn)值 : access_log logs/access.log combined; 作用域 : http, server, location, if in location, limit_except 1. 定義日志格式 語(yǔ)法格式: log_format name [escape=default|json] string ...; 默認(rèn)值 : log_format combined "..."; 作用域 : http 常見(jiàn)的日志變量 $remote_addr, $http_x_forwarded_for 記錄客戶(hù)端IP地址 $remote_user記錄客戶(hù)端用戶(hù)名稱(chēng) $request記錄請(qǐng)求的URL和HTTP協(xié)議(GET,POST,DEL,等) $status記錄請(qǐng)求狀態(tài) $body_bytes_sent發(fā)送給客戶(hù)端的字節(jié)數(shù),不包括響應(yīng)頭的大??; 該變量與Apache模塊mod_log_config里的“%B”參數(shù)兼容。 $bytes_sent發(fā)送給客戶(hù)端的總字節(jié)數(shù)。 $connection連接的序列號(hào)。 $connection_requests 當(dāng)前通過(guò)一個(gè)連接獲得的請(qǐng)求數(shù)量。 $msec 日志寫(xiě)入時(shí)間。單位為秒,精度是毫秒。 $pipe如果請(qǐng)求是通過(guò)HTTP流水線(pipelined)發(fā)送,pipe值為“p”,否則為“.”。 $http_referer 記錄從哪個(gè)頁(yè)面鏈接訪問(wèn)過(guò)來(lái)的 $http_user_agent記錄客戶(hù)端瀏覽器相關(guān)信息 $request_length請(qǐng)求的長(zhǎng)度(包括請(qǐng)求行,請(qǐng)求頭和請(qǐng)求正文)。 $request_time 請(qǐng)求處理時(shí)間,單位為秒,精度毫秒; 從讀入客戶(hù)端的第一個(gè)字節(jié)開(kāi)始,直到把最后一個(gè)字符發(fā)送給客戶(hù)端后進(jìn)行日志寫(xiě)入為止。 $time_iso8601 ISO8601標(biāo)準(zhǔn)格式下的本地時(shí)間。 $time_local通用日志格式下的本地時(shí)間。 示例: log_format main '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" "$request_time" ' '"$http_user_agent" "$http_x_forwarded_for"
對(duì)于日志相關(guān)的清理可以使用linux的定時(shí)任務(wù)去處理,示例如下:
clear.sh腳本如下:
#!/bin/bash #LOGS_PATH為日志存放路徑 LOGS_PATH=/home/lege/data/nginx/logs YESTERDAY=$(date -d "yesterday" +%Y-%m-%d) KEEPTIME=$(date -d "-3 days" +%Y-%m-%d) #切分日志文件 mv ${LOGS_PATH}/access.log ${LOGS_PATH}/access_${YESTERDAY}.log mv ${LOGS_PATH}/error.log ${LOGS_PATH}/error_${YESTERDAY}.log #通過(guò)Nginx信號(hào)量控制重讀日志,/web/nginx/為nginx安裝目錄 kill -USR1 $(cat /home/lege/data/nginx/logs/nginx.pid) #刪除3天前的日志文件 rm -f ${LOGS_PATH}/access_{KEEPTIME}.log rm -f ${LOGS_PATH}/error_{KEEPTIME}.log echo 0 crontab -e 添加如下: 0 0 * * * /bin/sh /home/lege/data/nginx/logs/clear.sh crontab -l 查看是否添加成功
http { server_tokens off; client_header_buffer_size 8k; client_max_body_size 130m; proxy_buffer_size 64k; proxy_buffers 8 64k; log_format access '$remote_addr $host $remote_user [$time_local] $status $request_length $body_bytes_sent $request_time 0 0 0 - "-" "$request" "$http_referer" "$http_user_agent" $http_cookie $bytes_sent'; access_log logs/access.log access; keepalive_requests 16; keepalive_timeout 5; server { listen 8080; server_name localhost; charset utf-8; location / { default_type 'application/octet-stream'; add_header Content-disposition "attachment"; ## 配置可以下載的文件路徑,下面是在windows下測(cè)試使用的路徑,linux也可換成對(duì)應(yīng)的路徑 root D://tools//nginx-1.17.4//conf; } } }
配置完成后重啟nginx,然后進(jìn)入瀏覽器輸入http://ip:8080/conf下的文件名即可下載到對(duì)應(yīng)的文件。ps:不能下載目錄只能下載文件。
總結(jié)
以上所述是小編給大家介紹的linux上nginx安裝部署及使用過(guò)程,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)請(qǐng)給我留言,小編會(huì)及時(shí)回復(fù)大家的。在此也非常感謝大家對(duì)創(chuàng)新互聯(lián)網(wǎng)站的支持!
如果你覺(jué)得本文對(duì)你有幫助,歡迎轉(zhuǎn)載,煩請(qǐng)注明出處,謝謝!