外观
nginx+php上传文件配置
2021-09-25
设置
php.ini主要把包括的选项有:
post_max_size、upload_max_filesize、memory_limit、max_execution_time等设置
nginx.conf主要是
client_max_body_size,注意设置sendfile onnginx 一定程度上避免 502
location / { ...... proxy_connect_timeout 300; proxy_send_timeout 300; proxy_read_timeout 300; }
