mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-10-11 07:55:59 +08:00
fix: 优化证书申请超时问题 (#2742)
Refs https://github.com/1Panel-dev/1Panel/issues/2447
This commit is contained in:
parent
b6fc1efd6a
commit
e35d0c9aed
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ export const ListSSL = (req: Website.SSLReq) => {
|
|||
};
|
||||
|
||||
export const CreateSSL = (req: Website.SSLCreate) => {
|
||||
return http.post<Website.SSLCreate>(`/websites/ssl`, req, TimeoutEnum.T_60S);
|
||||
return http.post<Website.SSLCreate>(`/websites/ssl`, req, TimeoutEnum.T_10M);
|
||||
};
|
||||
|
||||
export const DeleteSSL = (req: Website.DelReq) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue