2026-04-02 23:12:36 +08:00

537 B

title, createTime, tags, categories
title createTime tags categories
nginx+php上传文件配置 2021/09/25
linux
随记
  • 设置php.ini

    主要把包括的选项有:post_max_sizeupload_max_filesizememory_limitmax_execution_time

  • 设置nginx.conf

    主要是client_max_body_size,注意设置sendfile on

  • nginx 一定程度上避免 502

    location / {
        ......
        proxy_connect_timeout 300;
        proxy_send_timeout 300;
        proxy_read_timeout 300;
    }