我们有一个使用 valet 在本地 MacOS 中运行的 Laravel 应用程序。
我们有一个脚本需要 5 多个小时(例如)才能执行。现在,我们想要从浏览器的 10 个选项卡或使用 curl-cli 来运行该耗时脚本的相同 url。我们已经更改了超时限制,因此超过 5 小时的请求不是问题。
问题是,前 5 个 curl 请求正在执行预期的操作。该请求实际上是在修改我们的数据库。但是第 5 次之后的任何请求,根本没有命中 php 脚本!
似乎代客的 nginx 配置一次限制来自同一 IP 的 5 个请求。我们如何才能将其修复为更高?我们已经厌倦了一些配置,但它们都没有工作。我对 nginx 配置文件没有太多经验。下面是 valet( /usr/local/etc/nginx/nginx.conf
) 的当前 nginx 配置文件:
user "imran" staff;
worker_processes auto;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
types_hash_max_size 2048;
client_max_body_size 512M;
server_names_hash_bucket_size 128;
ssi on;
gzip on;
gzip_comp_level 5;
gzip_min_length 256;
gzip_proxied any;
gzip_vary on;
gzip_types
application/atom+xml
application/javascript
application/json
application/rss+xml
application/vnd.ms-fontobject
application/x-font-ttf
application/x-web-app-manifest+json
application/xhtml+xml
application/xml
font/opentype
image/svg+xml
image/x-icon
text/css
text/plain
text/x-component;
include "/Users/imran/.config/valet/Nginx/*";
include servers/*;
include valet/valet.conf;
}
提前致谢。