歡迎您光臨本站 註冊首頁

nginx作為文件伺服器下載問題

←手機掃碼閱讀     火星人 @ 2014-03-04 , reply:0

nginx作為文件伺服器下載問題

最近用nginx作為文件伺服器做文件下載,發現一個60M左右的文件用ie下載不完整,下載部分就中斷,以下是nginx配置
#user  nobody;
worker_processes  1;

#error_log  logs/error.log;
error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  logs/access.log  main;

   
    server {
        listen       80;
        server_name  localhost;

        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location / {
            root   html;
            index  index.html index.htm;
         

}
      

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }


    }
請問各位大俠如何解決?
《解決方案》

提問的關鍵是描述儘可能清楚,明白。 你的系統環境是什麼,ng版本,等等 都不知道,怎麼幫你。
《解決方案》

看不太懂













觸摸屏查詢機

[火星人 ] nginx作為文件伺服器下載問題已經有498次圍觀

http://coctec.com/docs/service/show-post-12340.html