本文主要跟大家分享nginx如何修改上傳檔案大小,自己搭的伺服器,用nginx做代理。上傳超過1M大的客戶端檔案無法正常上傳,nginx直接報錯,上傳檔案太大,於是修改了下nginx的配置,就可以了。
依照網路上所說的加上client_max_body_size 字段,怎麼重啟nginx都不行。後來發現放的位置有問題!
server { listen 80; server_name localhost; client_max_body_size 10M; location /web { alias D:/web; index main.html; } location /web/service { proxy_pass http://192.168.1.188:8080/service; } location /web/service/upload { proxy_pass http://192.168.1.188/upload; } }
client_max_body_size 10M 必須放在server下的server_name下,而不是放在localhost /web的大括號裡
自己搭的伺服器,用nginx做代理。上傳超過1M大的客戶端檔案無法正常上傳,nginx直接報錯,上傳檔案太大,於是修改了下nginx的配置,就可以了。
依照網路上所說的加上client_max_body_size 字段,怎麼重啟nginx都不行。後來發現放的位置有問題!
server { listen 80; server_name localhost; client_max_body_size 10M; location /web { alias D:/web; index main.html; } location /web/service { proxy_pass http://192.168.1.188:8080/service; } location /web/service/upload { proxy_pass http://192.168.1.188/upload; } }
client_max_body_size 10M 必須放在server下的server_name下,而不是放在localhost /web的大括號裡。
相關推薦:
#以上是nginx如何修改上傳檔案大小的詳細內容。更多資訊請關注PHP中文網其他相關文章!