我正在我的虚拟服务器上运行一个项目,该项目需要使用import React, { Component } from "react";
export default class SaveButton extends Component {
constructor(props) {
super(props);
this.props = props;
}
submit = () => {
this.props.handleSave();
};
render() {
return (
<button type="button" onClick={this.submit}>
Save
</button>
);
}
}
设置多台服务器,但这仅允许我最多添加4个服务器连接。
我增加了哈希桶的大小,但是它也不起作用。另外,当我尝试添加其他服务器连接时,NGINX
也没有给出任何错误。
在nginx
配置中是否有任何方法可以增加服务器限制。