我无法在nginx配置文件上放置http块/指令,我试图通过curl增加文件上传的超时时间,它说/etc/nginx/conf.d/中不允许使用http“指令default.conf:1
我正在使用Django,但似乎无法解决。
from _pytest.fixtures import FixtureRequest
def pytest_pyfunc_call(pyfuncitem):
if 'db' in pyfuncitem.fixturenames:
db = FixtureRequest(pyfuncitem).getfixturevalue('db')
db.session.commit()
# ensure this hook returns None, or your underlying test function won't be executed.
答案 0 :(得分:1)
mat-sidenav{
border-right:0px;
}
中已经使用了http
指令。打开它,您将在文件末尾找到/etc/nginx/nginx.conf
。
解决方案:从include /etc/nginx/conf.d/*.conf;
删除http
指令。您可以在/etc/nginx/conf.d/default.conf
指令内部或外部更改*_read_timeout
参数。