程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 更多關於編程 >> 修改nginx上傳文件大小限制

修改nginx上傳文件大小限制

編輯:更多關於編程

       一台服務器,用nginx做代理。突然發現上傳超過1M大的客戶端文件無法正常上傳,於是修改了下nginx的配置。

      cd /export/servers/nginx/conf/nginx.conf,在這個配置文件裡面的server段裡面的

      location / {

      root html;

      index index.html index.htm;

      client_max_body_size 1000m;

      }

      加上了client_max_body_size 字段,怎麼重啟都不行。後來在總配置文件裡面發現了分配置文件:

      sendfile on;

      #tcp_nopush on;

      #keepalive_timeout 0;

      keepalive_timeout 65;

      #gzip on;

      include domains/*;

      #include domains/chat.local;

      #include domains/chat.erp.com;

      #include domains/support.chat.com;

      #include douains/chat.com;

      server {

      listen 80;

      server_name localhost;

      於是找到了分配置文件,在分配置文件裡面進行修改。分配置文件配置如下:

      server

      {

      listen 80;

      server_name chat.erp.360buy.com;

      # access_log /export/servers/nginx/logs/chat.erp.360buy.com;

      location / {

      proxy_pass http://tomcat;

      client_max_body_size 1000m;

      }

      }

      用/export/servers/nginx/sbin/nginx -s reload重啟下,上傳文件的大小受限的問題就解決了。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved