Nginx服務最佳化設定的方法
1、expires快取模組
具體配置可參考官方文件
[root@cairui conf]# cat nginx.conf | egrep -v "#|^$" user nginx; worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { listen 80; server_name localhost; location / { root html; index index.html index.htm; } location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|js|html|htm|css)$ { log_not_found off; expires 7d ; access_log off; proxy_store on; proxy_store_access user:rw group:rw all:rw; } error_page 500 502 503 504 /50x.html; location = /50x.html { root html; } } } [root@cairui conf]# curl -i http://120.25.255.87/1.jpg http/1.1 200 ok server: nginx/1.13.9 date: mon, 05 mar 2018 04:08:41 gmt content-type: image/jpeg content-length: 48561 last-modified: wed, 29 nov 2017 08:16:39 gmt connection: keep-alive etag: "5a1e6ce7-bdb1" expires: mon, 12 mar 2018 04:08:41 gmt cache-control: max-age=604800 accept-ranges: bytes
2、nginx壓縮模組(gzip)
設定壓縮模組
[root@localhost vhost]# vi www.vhosts server { listen 8001; server_name 192.168.1.3; location / { root /web/www; index index.html index.htm; access_log /application/nginx/log/access_www.log commonlog; } location ~ .*\.(gif|jpg|jpge|png|bmp|swf)$ { expires 3560d; root /web/www; } location ~ .*\.(js|css)?$ { expires 30d; root /web/www; } gzip on; #开启压缩功能 gzip_min_length 1k; #设置允许压缩页面的最小字节数 gzip_buffers 4 16k; gzip_http_version 1.0; gzip_comp_level 2; gzip_types text/plain application/x-javascript text/css application/xml; gzip_vary on; }
檢查語法、重新啟動服務
[root@localhost vhost]# /application/nginx/sbin/nginx -t nginx: the configuration file /application/nginx-1.10.1/conf/nginx.conf syntax is ok nginx: configuration file /application/nginx-1.10.1/conf/nginx.conf test is successful [root@localhost vhost]# /application/nginx/sbin/nginx -s reload [root@localhost vhost]# cd /web/www/ [root@localhost www]# ll total 12 -rw-r--r--. 1 root root 20 sep 26 07:00 index.html -rw-r--r--. 1 root root 5798 sep 19 06:46 mysql.jpg [root@localhost www]# rz rz waiting to receive. starting zmodem transfer. press ctrl+c to cancel. transferring 1.js... 100% 42 kb 42 kb/s 00:00:01 0 errors ?[root@localhost www]# ll total 56 -rw-r--r--. 1 root root 43978 sep 27 05:06 1.js -rw-r--r--. 1 root root 20 sep 26 07:00 index.html -rw-r--r--. 1 root root 5798 sep 19 06:46 mysql.jpg 客户端访问 http://192.168.1.3:8001/1.js [root@localhost www]# curl -i http://192.168.1.3:8001/1.js http/1.1 200 ok server: nginx/1.10.1 date: tue, 27 sep 2016 04:44:08 gmt content-type: application/javascript content-length: 43978 last-modified: tue, 27 sep 2016 02:06:23 gmt connection: keep-alive etag: "57e9d41f-abca" expires: thu, 27 oct 2016 04:44:08 gmt cache-control: max-age=2592000 accept-ranges: bytes
以上是Nginx服務最佳化設定的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

熱門話題

確認 Nginx 是否啟動的方法:1. 使用命令行:systemctl status nginx(Linux/Unix)、netstat -ano | findstr 80(Windows);2. 檢查端口 80 是否開放;3. 查看系統日誌中 Nginx 啟動消息;4. 使用第三方工具,如 Nagios、Zabbix、Icinga。

在 Linux 中啟動 Nginx 的步驟:檢查 Nginx 是否已安裝。使用 systemctl start nginx 啟動 Nginx 服務。使用 systemctl enable nginx 啟用在系統啟動時自動啟動 Nginx。使用 systemctl status nginx 驗證啟動是否成功。在 Web 瀏覽器中訪問 http://localhost 查看默認歡迎頁面。

在 Linux 中,使用以下命令檢查 Nginx 是否已啟動:systemctl status nginx根據命令輸出進行判斷:如果顯示 "Active: active (running)",則 Nginx 已啟動。如果顯示 "Active: inactive (dead)",則 Nginx 已停止。

如何在 Windows 中配置 Nginx?安裝 Nginx 並創建虛擬主機配置。修改主配置文件並包含虛擬主機配置。啟動或重新加載 Nginx。測試配置並查看網站。選擇性啟用 SSL 並配置 SSL 證書。選擇性設置防火牆允許 80 和 443 端口流量。

如何解決 Nginx 403 Forbidden 錯誤?檢查文件或目錄權限;2. 檢查 .htaccess 文件;3. 檢查 Nginx 配置文件;4. 重啟 Nginx。其他可能原因還包括防火牆規則、SELinux 設置或應用程序問題。

啟動 Nginx 服務器需要按照不同操作系統採取不同的步驟:Linux/Unix 系統:安裝 Nginx 軟件包(例如使用 apt-get 或 yum)。使用 systemctl 啟動 Nginx 服務(例如 sudo systemctl start nginx)。 Windows 系統:下載並安裝 Windows 二進製文件。使用 nginx.exe 可執行文件啟動 Nginx(例如 nginx.exe -c conf\nginx.conf)。無論使用哪種操作系統,您都可以通過訪問服務器 IP

解決 Nginx 跨域問題有兩種方法:修改跨域響應頭:添加指令以允許跨域請求,指定允許的方法和頭,以及設置緩存時間。使用 CORS 模塊:啟用模塊並配置 CORS 規則,允許跨域請求、方法、頭和設置緩存時間。

查看 Nginx 運行狀態的方法有:使用 ps 命令查看進程狀態;查看 Nginx 配置文件 /etc/nginx/nginx.conf;使用 Nginx 狀態模塊啟用狀態端點;使用 Prometheus、Zabbix 或 Nagios 等監控工具。
