當前位置:首頁 » 文件管理 » 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 "^.*$";

}

熱點內容
java返回this 發布:2025-10-20 08:28:16 瀏覽:590
製作腳本網站 發布:2025-10-20 08:17:34 瀏覽:885
python中的init方法 發布:2025-10-20 08:17:33 瀏覽:578
圖案密碼什麼意思 發布:2025-10-20 08:16:56 瀏覽:763
怎麼清理微信視頻緩存 發布:2025-10-20 08:12:37 瀏覽:680
c語言編譯器怎麼看執行過程 發布:2025-10-20 08:00:32 瀏覽:1010
郵箱如何填寫發信伺服器 發布:2025-10-20 07:45:27 瀏覽:253
shell腳本入門案例 發布:2025-10-20 07:44:45 瀏覽:111
怎麼上傳照片瀏覽上傳 發布:2025-10-20 07:44:03 瀏覽:802
python股票數據獲取 發布:2025-10-20 07:39:44 瀏覽:709