當前位置:首頁 » 文件管理 » chttp上傳下載

chttp上傳下載

發布時間: 2025-08-02 17:22:05

linux安裝的一個軟體可以http上傳下載文件,帶web管理端。不知道叫啥名或者類似功能的軟體

nginx伺服器實現上傳下載文件

下載

更新配製文件,添加如下欄位,這里用alias實現把嵌入式開發板的根目錄全部映射過去,

location /download {

alias /;

autoindex on;

autoindex_localtime on;

autoindex_exact_size off;

}

執行,

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

上傳

需要有nginx的源碼,重新編譯nginx,添加上傳模塊,上傳進度模塊,《Linux就該這么學》更多知識,一起學習交流。

$ ./configure --add-mole=$parent_path/nginx-upload-mole-2.3.0 --add-mole=$parent_path/nginx-upload-progress-mole-0.8.4

$ make

$ make install

添加配置文件,

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 "^.*$";

}

熱點內容
郭天祥新概念51單片機c語言教程 發布:2025-09-10 08:40:13 瀏覽:632
文件上傳ftp伺服器 發布:2025-09-10 08:39:24 瀏覽:698
硬聚類演算法 發布:2025-09-10 08:39:18 瀏覽:940
電子表加密碼 發布:2025-09-10 08:18:38 瀏覽:274
python圖像處理實例 發布:2025-09-10 08:05:54 瀏覽:383
支付寶怎麼的修改密碼 發布:2025-09-10 08:05:53 瀏覽:463
mysql資料庫innodb 發布:2025-09-10 08:05:47 瀏覽:6
ipadmini還原密碼多少 發布:2025-09-10 08:00:37 瀏覽:162
易語言有了源碼 發布:2025-09-10 07:53:57 瀏覽:241
標准C語言基礎教程 發布:2025-09-10 07:36:15 瀏覽:516