mirror of
https://github.com/whyour/qinglong.git
synced 2026-07-17 17:54:32 +08:00
修改 nginx body 限制,服务重启延迟时间
This commit is contained in:
@@ -138,7 +138,7 @@ const CheckUpdate = ({ socketMessage, systemInfo }: any) => {
|
||||
<Countdown
|
||||
className="inline-countdown"
|
||||
format="ss"
|
||||
value={Date.now() + 1000 * 15}
|
||||
value={Date.now() + 1000 * 30}
|
||||
/>
|
||||
秒后自动刷新
|
||||
</span>
|
||||
@@ -147,7 +147,7 @@ const CheckUpdate = ({ socketMessage, systemInfo }: any) => {
|
||||
});
|
||||
setTimeout(() => {
|
||||
window.location.reload();
|
||||
}, 14000);
|
||||
}, 30000);
|
||||
})
|
||||
.catch((error: any) => {
|
||||
console.log(error);
|
||||
|
||||
@@ -136,7 +136,7 @@ const Other = ({
|
||||
<Countdown
|
||||
className="inline-countdown"
|
||||
format="ss"
|
||||
value={Date.now() + 1000 * 15}
|
||||
value={Date.now() + 1000 * 30}
|
||||
/>
|
||||
秒后自动刷新
|
||||
</span>
|
||||
@@ -145,7 +145,7 @@ const Other = ({
|
||||
});
|
||||
setTimeout(() => {
|
||||
window.location.reload();
|
||||
}, 14000);
|
||||
}, 30000);
|
||||
})
|
||||
.catch((error: any) => {
|
||||
console.log(error);
|
||||
|
||||
@@ -239,7 +239,7 @@ const SecuritySettings = ({ user, userChange }: any) => {
|
||||
头像
|
||||
</div>
|
||||
<Avatar size={128} shape="square" icon={<UserOutlined />} src={avatar} />
|
||||
<ImgCrop rotate>
|
||||
<ImgCrop rotationSlider>
|
||||
<Upload
|
||||
method="put"
|
||||
showUploadList={false}
|
||||
|
||||
Reference in New Issue
Block a user