nginx 가 파일 업로드 모드 를 지원 하도록 합 니 다.

7070 단어
파일 업로드 의 몇 가지 서로 다른 언어 와 방법 에 대한 정리
첫 번 째 모드: PHP 언어 로 처리
이 모델 은 비교적 간단 하고 사용 하 는 사람 도 가장 많 으 며 유사 한 것 은. net 으로 이 루어 지고 jsp 로 이 루어 지 며 모두 처리 폼 입 니 다.언어의 차이 만 있 고 본질 은 아무런 차이 가 없다.
file. php 파일 내용 은 다음 과 같 습 니 다.
<?php
  if ($_FILES["file"]["error"] > 0)
  {
    echo "Return Code: " . $_FILES["file"]["error"] . "<br />";
  }
  else
  {
    echo "Upload: " . $_FILES["file"]["name"] . "<br />";
    echo "Type: " . $_FILES["file"]["type"] . "<br />";
    echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
    echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";

    if (file_exists("upload/" . $_FILES["file"]["name"]))
    {
      echo $_FILES["file"]["name"] . " already exists. ";
    }
    else
    {
      move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]);
      echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
    }
  }
?>

테스트 명령:
curl   -F   "action=file.php"   -F   "[email protected]"   http://192.168.1.162/file.php  
이렇게 하면 로 컬 파일 xxx. c 를  폼 형식 으로 서버 에 제출 하면 file. php 파일 이 이 폼 을 처리 합 니 다.
두 번 째 모드: lua 언어 로 처리
이런 모델 은 사용 해 야 한다.  ngx_lua 모듈 지원, 직접 다운로드 가능  ngx_openresty  이 프로젝트 는 춘 형 이 맡 는 다.
춘 형 은 파일 업 로드 를 처리 하기 위해 lua 를 따로 썼 다.  upload. lua 모듈.
사이트 주소   https://github.com/agentzh/lua-resty-upload    다운로드 할 수 있 습 니 다. 안 에는 upload. lua 파일 만 사용 하면 됩 니 다. 이 파일 을 넣 으 세 요.
/usr/local/openresty/lualib/resty/  이 디 렉 터 리 면 됩 니 다.  --prefix=/usr  디 렉 터 리 변경 가능)
올 라 온 파일 을 처리 하기 위해 savefile. lua 파일 을 쓰 십시오. 파일 내용 은 다음 과 같 습 니 다.
package.path = '/usr/local/share/lua/5.1/?.lua;/usr/local/openresty/lualib/resty/?.lua;'
package.cpath = '/usr/local/lib/lua/5.1/?.so;'

local upload = require "upload"

local chunk_size = 4096
local form = upload:new(chunk_size)
local file
local filelen=0
form:set_timeout(0) -- 1 sec
local filename

function get_filename(res)
    local filename = ngx.re.match(res,'(.+)filename="(.+)"(.*)')
    if filename then 
        return filename[2]
    end
end

local osfilepath = "/usr/local/openresty/nginx/html/"
local i=0
while true do
    local typ, res, err = form:read()
    if not typ then
        ngx.say("failed to read: ", err)
        return
    end
    if typ == "header" then
        if res[1] ~= "Content-Type" then
            filename = get_filename(res[2])
            if filename then
                i=i+1
                filepath = osfilepath  .. filename
                file = io.open(filepath,"w+")
                if not file then
                    ngx.say("failed to open file ")
                    return
                end
            else
            end
        end
    elseif typ == "body" then
        if file then
            filelen= filelen + tonumber(string.len(res))    
            file:write(res)
        else
        end
    elseif typ == "part_end" then
        if file then
            file:close()
            file = nil
            ngx.say("file upload success")
        end
    elseif typ == "eof" then
        break
    else
    end
end
if i==0 then
    ngx.say("please upload at least one file!")
    return
end

위 에 있 는 이 savefile. lua 파일 을 놓 았 습 니 다.  nginx / conf / lu / 디 렉 터 리 중
nginx. conf 설정 파일 에 다음 설정 을 추가 합 니 다:
        location /uploadfile
        {
           content_by_lua_file 'conf/lua/savefile.lua';
        }

아래 업로드 명령 으로 테스트 성공
curl   -F   "action=uploadfile"   -F   "[email protected]"   http://127.0.0.1/uploadfile
세 번 째 모드: perl 언어 로 처리
nginx  --with-http_perl_module perl 스 크 립 트 지원
그리고 perl 로 양식 을 처리 합 니 다. 이런 모델 은 아직 테스트 를 하지 않 았 습 니 다. 만약 에 그 형제 가 테스트 를 한 적 이 있다 면 보충 해 주세요.
다음 코드 는 PERL 이 양식 을 제출 하 는 코드 입 니 다.
use strict;
use warnings;
use WWW::Curl::Easy;
use WWW::Curl::Form;

my $curl = WWW::Curl::Easy->new;
my $form = WWW::Curl::Form->new;

    $form->formaddfile("11game.exe", 'FILE1', "multipart/form-data");
#   $form->formadd("FIELDNAME", "VALUE");
    $curl->setopt(CURLOPT_HTTPPOST, $form);

    $curl->setopt(CURLOPT_HEADER,1);
    $curl->setopt(CURLOPT_URL, 'http://127.0.0.1/uploadfile');

    # A filehandle, reference to a scalar or reference to a typeglob can be used here.
    my $response_body;
    $curl->setopt(CURLOPT_WRITEDATA,\$response_body);

    # Starts the actual request
    my $retcode = $curl->perform;

    # Looking at the results...
    if ($retcode == 0) 
    {
        print("Transfer went ok
"); my $response_code = $curl->getinfo(CURLINFO_HTTP_CODE); # judge result and next action based on $response_code print("Received response:
$response_body
"); } else { # Error code, type of error, error message print("An error happened: $retcode ".$curl->strerror($retcode)." ".$curl->errbuf."
"); }

서버 쪽 코드 는 perl CGI 가 아니 라 nginx 의 perl 스 크 립 트 를 끼 워 넣 었 기 때문에 폼 을 처리 하 는 코드 가 아직 테스트 에 통과 되 지 않 았 습 니 다. 시간 이 있 으 면 다시 연구 해 보 겠 습 니 다.
네 번 째 모드: http 의 dav 모듈 을 사용 한 PUT 방법
nginx 를 컴 파일 할 때 -- with - httpdav_module 매개 변 수 는 dav 모드 를 지원 합 니 다.
nginx. conf 파일 의 설정 은 다음 과 같 습 니 다.
        location / {
            client_body_temp_path  /usr/local/openresty/nginx/html/tmp;
            dav_methods  PUT DELETE MKCOL COPY MOVE;
            create_full_put_path   on;
            dav_access             group:rw  all:r;
            root   html;
            #index  index.html index.htm;
        }

다음 명령 으로 테스트 에 성공 할 수 있 습 니 다:
curl  --request   PUT   --data-binary "@11game.exe"   --header "Content-Type: application/octet-stream"    http://127.0.0.1/game.exe
그 중 11game. exe 는 업로드 한 로 컬 파일 입 니 다.
저 는 perl 스 크 립 트 로 PUT 바 이 너 리 파일 을 사용 하려 고 했 지만 시도 가 실 패 했 습 니 다. 아래 코드 는 PUT 텍스트 파일 을 사용 할 수 있 고 PUT 바 이 너 리 파일 을 사용 할 수 없습니다. 제 가 아 는 것 이 있 으 면 답장 해 주 셔 서 감사합니다.
use strict;
use warnings;

use LWP::UserAgent;
use HTTP::Request;

# require HTTP::Request;
 my $r = HTTP::Request->new();
    $r->method("PUT");
    $r->uri("http://127.0.0.1/ssss.txt");
    $r->content("ssssssssssssss");
my $ua = LWP::UserAgent->new;
my $res = $ua->request($r);

#         ,             。          PUT        。  。。。


네 번 째 만 PUT 방법 이 고, 다른 세 가 지 는 모두  POST 폼 의 방법.

좋은 웹페이지 즐겨찾기