最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

nginx服務(wù)器實(shí)現(xiàn)上傳下載文件的實(shí)例代碼

 更新時(shí)間:2024年02月01日 11:18:05   作者:三遍豬  
這篇文章主要介紹了nginx服務(wù)器實(shí)現(xiàn)上傳下載文件的實(shí)例代碼,本文通過代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作有一定的幫助,需要的朋友可以參考下

下載

更新配制文件,添加如下字段,這里用alias實(shí)現(xiàn)把嵌入式開發(fā)板的根目錄全部映射過去,

location /download {
    alias   /;
    autoindex on; 
    autoindex_localtime on;
    autoindex_exact_size off;
} 

執(zhí)行,

$ ./nginx/sbin/nginx -p ./nginx -s reload

上傳

需要有nginx的源碼,重新編譯nginx,添加上傳模塊,上傳進(jìn)度模塊,

$ ./configure --add-module=$parent_path/nginx-upload-module-2.3.0 --add-module=$parent_path/nginx-upload-progress-module-0.8.4
$ make
$ make install

注意上傳進(jìn)度模塊,到0.9版本有一個(gè)不兼容的更改,

in version 0.9.0 there is INCOMPATIBLE CHANGE: JSONP is now the default output of the progress probes. If you rely on this module serving the deprecated java output use:

upload_progress_java_output
in the progress probe location.

添加配置文件,

location /upload {  
    upload_pass     /;  
    # upload_cleanup 400 404 499 500-505;  
    upload_store    /boot;  
    upload_store_access user:rw;  
    # upload_limit_rate 128k;  
    upload_set_form_field "${upload_field_name}_name" $upload_file_name;  
    upload_set_form_field "${upload_field_name}_content_type" $upload_content_type;  
    upload_set_form_field "${upload_field_name}_path" $upload_tmp_path;  
    upload_aggregate_form_field "${upload_field_name}_md5" $upload_file_md5;  
    upload_aggregate_form_field "${upload_field_name}_size" $upload_file_size;  
    upload_pass_form_field "^.*$";  
}

建立html測(cè)試,使用fcgi,

printf("<form method=\"POST\" enctype=\"multipart/form-data\" action=\"uploademmc\"\n");
printf("<p>File Upload:\n");
printf("<input type=\"file\" name=\"file\" value=\"\">\n");
printf("<p>\n");
printf("<input type=\"submit\" name=\"uploademmc\" value=\"uploademmc\">\n");
printf("<p>\n");
printf("</form>\n");

上傳,0000000001即為新上傳的文件,這里必須用腳本在上傳結(jié)束后來(lái)執(zhí)行重命名操作,

root@zynqmp:~# ls -l /boot
total 53172
-rw-------    1 root     root         31428 Jan 26 16:11 0000000001
-rw-r--r--    1 root     root      14283264 Jan 26 12:06 Image
-rwxr-xr-x    1 root     root      19311212 Jan  1  1970 MWM178_V1_U6_V1.bit
-rw-r--r--    1 root     root       1118392 Jan 26 06:47 boot.bin
-rw-r--r--    1 root     root      19634147 Jan 26 00:56 rootfs.ext4.gz.uboot
-rw-r--r--    1 root     root         29091 Jan 26 06:47 system.dtb

上傳使用post方法,后端接收到的字符串為如下格式,可以看到文件名在file_name字段中,可利用環(huán)境變量REQUEST_URI提取出來(lái)即可,

------WebKitFormBoundarygKAThjQRpvOwowzR
Content-Disposition: form-data; name="file_name"

11.PNG
------WebKitFormBoundarygKAThjQRpvOwowzR
Content-Disposition: form-data; name="file_content_type"

image/png
------WebKitFormBoundarygKAThjQRpvOwowzR
Content-Disposition: form-data; name="file_path"

/boot/0023791667
------WebKitFormBoundarygKAThjQRpvOwowzR
Content-Disposition: form-data; name="file_md5"

0276e88e6161ac806d46ee0afb45976e
------WebKitFormBoundarygKAThjQRpvOwowzR
Content-Disposition: form-data; name="file_size"

17734
------WebKitFormBoundarygKAThjQRpvOwowzR
Content-Disposition: form-data; name="uploademmc"

uploademmc
------WebKitFormBoundarygKAThjQRpvOwowzR--

FCGI_ROLE=RESPONDER
SCRIPT_FILENAME=./nginx/html/index.cgi
QUERY_STRING=
REQUEST_METHOD=POST
CONTENT_TYPE=multipart/form-data; boundary=----WebKitFormBoundarygKAThjQRpvOwowzR
CONTENT_LENGTH=706
SCRIPT_NAME=/index.cgi
REQUEST_URI=/uploademmc

上傳進(jìn)度模塊需要前端js協(xié)助,配置文件,前面提到的0.9版本有一個(gè)不兼容的更改,如果需要和老版本兼容,需要在location ^~ /progress中添加upload_progress_java_output,

http {
    ...
    upload_progress proxied 5m;
    
    server {
        ...

        location = / {
            fastcgi_pass 127.0.0.1:8088;
            fastcgi_index index.cgi;
            include fastcgi.conf;
        }

        location /download {
            alias   /;
            autoindex on; 
            autoindex_localtime on;
            autoindex_exact_size off;
        } 

        location /upload {  
            upload_pass     /;  
            # upload_cleanup 400 404 499 500-505;  
            upload_store    /boot;  
            upload_store_access user:rw;  
            # upload_limit_rate 128k;  
            client_max_body_size 8g;
            upload_set_form_field "${upload_field_name}_name" $upload_file_name;  
            upload_set_form_field "${upload_field_name}_content_type" $upload_content_type;  
            upload_set_form_field "${upload_field_name}_path" $upload_tmp_path;  
            upload_aggregate_form_field "${upload_field_name}_md5" $upload_file_md5;  
            upload_aggregate_form_field "${upload_field_name}_size" $upload_file_size;  
            upload_pass_form_field "^.*$";  
            track_uploads proxied 30s;
        }

        location ^~ /progress {
            # report uploads tracked in the 'proxied' zone
            report_uploads proxied;
            # upload_progress_java_output;
        }

        location ~ \.js$ {
            root html;
        }

設(shè)置參數(shù)client_max_body_size 8g,否則上傳時(shí)會(huì)報(bào)錯(cuò)413 Request Entity Too Large,編寫html,

printf("<form id=\"upload\" method=\"POST\" enctype=\"multipart/form-data\" action=\"upload\" οnsubmit=\"openProgressBar(); return true;\"\n");
printf("<p>File Upload:\n");
printf("<input type=\"file\" name=\"file\" value=\"\">\n");
printf("<p>\n");
printf("<input type=\"submit\" name=\"upload\" value=\"upload\">\n");
printf("<p>\n");
printf("</form>\n");
printf("<div>\n");
printf("<div id=\"progress\" style=\"width: 400px; border: 1px solid black\">\n");
printf("<div id=\"progressbar\" style=\"width: 1px; background-color: blue; border: 1px solid white\">&nbsp;</div>\n");
printf("</div>\n");
printf("<div id=\"tp\">(progress)</div>\n");
printf("</div>\n");

添加js文件,

interval = null;

function openProgressBar() {
 /* generate random progress-id */
 uuid = "";
 for (i = 0; i < 32; i++) {
  uuid += Math.floor(Math.random() * 16).toString(16);
 }
 /* patch the form-action tag to include the progress-id */
 document.getElementById("upload").action="/upload?X-Progress-ID=" + uuid;

 /* call the progress-updater every 1000ms */
 interval = window.setInterval(
   function () {
     fetch(uuid);
   },
   1000
 );
}

function fetch(uuid) {
 req = new XMLHttpRequest();
 req.open("GET", "/progress", 1);
 req.setRequestHeader("X-Progress-ID", uuid);
 req.onreadystatechange = function () {
  if (req.readyState == 4) {
   if (req.status == 200) {
    /* poor-man JSON parser */
    var upload = eval(req.responseText);

    document.getElementById('tp').innerHTML = upload.state;

    /* change the width if the inner progress-bar */
    if (upload.state == 'done' || upload.state == 'uploading') {
     bar = document.getElementById('progressbar');
     w = 400 * upload.received / upload.size;
     bar.style.width = w + 'px';
    }
    /* we are done, stop the interval */
    if (upload.state == 'done') {
     window.clearTimeout(interval);
    }
   }
  }
 }
 req.send(null);
}

測(cè)試一下,chrome自己也會(huì)統(tǒng)計(jì)上傳進(jìn)度,標(biāo)題欄開始小圓圈刷新,

在這里插入圖片描述

總結(jié)

以上就是nginx服務(wù)器實(shí)現(xiàn)上傳下載文件的實(shí)例代碼的詳細(xì)內(nèi)容,更多關(guān)于nginx上傳下載文件的資料請(qǐng)關(guān)注腳本之家其它相關(guān)文章!

相關(guān)文章

  • Nginx下配置Https證書詳細(xì)過程

    Nginx下配置Https證書詳細(xì)過程

    這篇文章主要介紹了Nginx下配置Https證書詳細(xì)過程,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-09-09
  • 利用nginx + fastcgi實(shí)現(xiàn)圖片識(shí)別服務(wù)器

    利用nginx + fastcgi實(shí)現(xiàn)圖片識(shí)別服務(wù)器

    這篇文章主要給大家介紹了關(guān)于如何利用nginx + fastcgi實(shí)現(xiàn)圖片識(shí)別服務(wù)器的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-03-03
  • Nginx服務(wù)500:Internal Server Error原因之一

    Nginx服務(wù)500:Internal Server Error原因之一

    這篇文章主要介紹了Nginx服務(wù)500:Internal Server Error原因之一,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2020-05-05
  • Nginx部署Vue3項(xiàng)目完整指南

    Nginx部署Vue3項(xiàng)目完整指南

    本文檔介紹了使用Nginx部署Vue3單頁(yè)應(yīng)用,包括本地開發(fā)環(huán)境和服務(wù)端生產(chǎn)環(huán)境的配置差異, 文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2026-03-03
  • 深入理解Nginx中Server和Location的匹配邏輯

    深入理解Nginx中Server和Location的匹配邏輯

    這篇文章主要介紹了深入理解Nginx中Server和Location的匹配邏輯,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來(lái)看看吧
    2019-03-03
  • Nginx部署前端靜態(tài)文件指南分享(基于虛擬機(jī)環(huán)境)

    Nginx部署前端靜態(tài)文件指南分享(基于虛擬機(jī)環(huán)境)

    本筆記詳細(xì)介紹了如何使用Nginx部署前端靜態(tài)文件,包括環(huán)境準(zhǔn)備、文件傳輸、配置文件編寫、自定義配置加載、驗(yàn)證配置和日志查看等步驟,通過實(shí)踐操作,用戶可以掌握用Nginx快速部署任意前端靜態(tài)文件的核心技能
    2026-02-02
  • Nginx中mime.types配置文件類型響應(yīng)的實(shí)現(xiàn)步驟

    Nginx中mime.types配置文件類型響應(yīng)的實(shí)現(xiàn)步驟

    本文主要介紹了Nginx中mime.types配置文件類型響應(yīng)的實(shí)現(xiàn)步驟,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2026-03-03
  • 啟動(dòng)Nginx.exe出現(xiàn)閃退問題的解決方案

    啟動(dòng)Nginx.exe出現(xiàn)閃退問題的解決方案

    在做項(xiàng)目時(shí),使用老師給的代碼,點(diǎn)擊Nginx.exe出現(xiàn)閃退的情況,出現(xiàn)這個(gè)問題可能出現(xiàn)的情況,端口號(hào)被占用或者logs下文件路徑有問題,所以本文小編給大家介紹了啟動(dòng)Nginx.exe出現(xiàn)閃退問題的解決方案,需要的朋友可以參考下
    2024-03-03
  • Nginx內(nèi)存占用過高排查與處理過程

    Nginx內(nèi)存占用過高排查與處理過程

    Nginx內(nèi)存使用率過高就像是一場(chǎng)暴風(fēng)雨,會(huì)給我們的網(wǎng)站和應(yīng)用帶來(lái)不小的麻煩,但只要我們能夠冷靜分析,找出問題的根源,對(duì)癥下藥,就一定能夠化解危機(jī),所以本文給大家介紹了Nginx內(nèi)存占用過高排查與處理過程,需要的朋友可以參考下
    2025-08-08
  • nginx搭建高可用集群的實(shí)現(xiàn)方法

    nginx搭建高可用集群的實(shí)現(xiàn)方法

    本文主要介紹了nginx搭建高可用集群的實(shí)現(xiàn)方法,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2023-01-01

最新評(píng)論

凉城县| 连山| 隆昌县| 秭归县| 西昌市| 广平县| 宜黄县| 涿州市| 怀仁县| 沭阳县| 晋州市| 沾化县| 榆中县| 永德县| 泰和县| 顺平县| 同江市| 南京市| 阳江市| 中方县| 将乐县| 阿尔山市| 沙湾县| 天柱县| 西充县| 庆云县| 忻州市| 德昌县| 孟州市| 怀仁县| 措勤县| 银川市| 攀枝花市| 南宁市| 错那县| 岢岚县| 博白县| 潜江市| 丰宁| 突泉县| 龙州县|