一,php配置文件大小和超时时间
1,编辑配置文件:root@lhdpc:~# vi /usr/local/soft/php8/etc/php.ini上传文件大小
upload_max_filesize = 2M设置为128M或需要的数值 post的大小:
post_max_size = 8M设置为128M或需要的数值 最长执行时间:
max_execution_time = 30设置为60秒 2,设置完成后重启php
root@lhdpc:~# systemctl restart php-fpm.service
说明:刘宏缔的架构森林是一个专注架构的博客,地址:https://www.cnblogs.com/architectforest
对应的源码可以访问这里获取: https://github.com/liuhongdi/
或: https://gitee.com/liuhongdi
说明:作者:刘宏缔 邮箱: 371125307@qq.com
二,nginx配置数据大小和时长
修改配置文件root@lhdpc:/etc/nginx# vi nginx.conf配置内容:
client_max_body_size 128m; keepalive_timeout 60; fastcgi_connect_timeout 60; fastcgi_send_timeout 60; fastcgi_read_timeout 60; proxy_connect_timeout 60; proxy_send_timeout 60; proxy_read_timeout 60; send_timeout 60;
三,vue中给axios配置时长
设置超时时间为60slet config = { timeout:60000, }; const _axios = axios.create(config); …
四,查看效果:
一个用时15s的例子:五,查看nginx/php/vue的版本:
nginx:root@lhdpc:/etc/nginx# nginx -V nginx version: nginx/1.18.0 (Ubuntu) built with OpenSSL 1.1.1l 24 Aug 2021 TLS SNI support enabled configure arguments:….php:
root@lhdpc:/etc/nginx# php --version PHP 8.1.1 (cli) (built: Dec 20 2021 16:12:16) (NTS) Copyright (c) The PHP Group Zend Engine v4.1.1, Copyright (c) Zend Technologies with Zend OPcache v8.1.1, Copyright (c), by Zend Technologies
vue:
liuhongdi@lhdpc:/data/vue/demo1$ npm list vue demo1@0.1.0 /data/vue/demo1 ├─┬ @vue/cli-plugin-babel@4.5.15 │ └─┬ @vue/babel-preset-app@4.5.15 │ └── vue@3.2.26 deduped └─┬ vue@3.2.26 └─┬ @vue/server-renderer@3.2.26 └── vue@3.2.26 deduped