您好,登錄后才能下訂單哦!
curl是基于URL語法在命令行方式下工作的文件傳輸工具,它支持FTP, FTPS, HTTP, HTTPS, GOPHER, TELNET, DICT, FILE及LDAP等協議。
curl支持HTTPS認證,并且支持HTTP的POST、PUT等方法, FTP上傳, kerberos認證,HTTP上傳,代理服務器, cookies, 用戶名/密碼認證, 下載文件斷點續傳,上載文件斷點續傳,,http代理服務器管道( proxy tunneling), 甚至它還支持IPv6, socks5代理服務器,,通過http代理服務器上傳文件到FTP服務器等等,功能十分強大。
# curl的常用選項: -A/--user-agent <string> 設置用戶代理發送給服務器 -basic 使用HTTP基本認證 --tcp-nodelay 使用TCP_NODELAY選項 -e/--referer <URL> 來源網址 --cacert <file> CA證書 (SSL) --compressed 要求返回是壓縮的格式 -H/--header <line>自定義頭信息傳遞給服務器 -I/--head 只顯示響應報文首部信息 --limit-rate <rate> 設置傳輸速度 -u/--user <user[:password]>設置服務器的用戶和密碼 -0/--http1.0 使用HTTP 1.0
#使用mod_deflate模塊壓縮頁面優化傳輸速度 [root@bogon ~]# curl -I 192.168.1.33:80 HTTP/1.1 403 Forbidden Date: Mon, 10 Jul 2017 00:46:21 GMT Server: Apache/2.2.15 (CentOS) Accept-Ranges: bytes Content-Length: 4954 #文本大小:4954 Connection: close Content-Type: text/html; charset=UTF-8 #text/html格式 #/etc/httpd/conf/httpd.conft添加deflate壓縮模塊 SetOutputFilter DEFLATE # mod_deflate configuration # Restrict compression to these MIME types AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE application/xhtml+xml AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType DEFLATE application/xml AddOutputFilterByType DEFLATE application/x-javascript AddOutputFilterByType DEFLATE text/javascript AddOutputFilterByType DEFLATE text/css # Level of compression (Highest 9 - Lowest 1) DeflateCompressionLevel 9 # Netscape 4.x has some problems. BrowserMatch ^Mozilla/4 gzip-only-text/html # Netscape 4.06-4.08 have some more problems BrowserMatch ^Mozilla/4\.0[678] no-gzip # MSIE masquerades as Netscape, but it is fine BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html [root@bogon ~]# service httpd reload #重啟httpd服務 Reloading httpd: [root@bogon ~]# curl -I --compressed 192.168.1.33:80 HTTP/1.1 403 Forbidden Date: Mon, 10 Jul 2017 00:46:59 GMT Server: Apache/2.2.15 (CentOS) Accept-Ranges: bytes Vary: Accept-Encoding Content-Encoding: gzip #gzip格式 Content-Length: 1991 #文檔大小:1991 Connection: close Content-Type: text/html; charset=UTF-8
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。