mirror of https://github.com/1Panel-dev/1Panel
feat: 证书申请延长超时时间 (#1511)
parent
b780df96af
commit
105c249d97
|
@ -100,7 +100,7 @@ export const ListSSL = (req: Website.SSLReq) => {
|
|||
};
|
||||
|
||||
export const CreateSSL = (req: Website.SSLCreate) => {
|
||||
return http.post<Website.SSLCreate>(`/websites/ssl`, req, 60000);
|
||||
return http.post<Website.SSLCreate>(`/websites/ssl`, req, 100000);
|
||||
};
|
||||
|
||||
export const DeleteSSL = (req: Website.DelReq) => {
|
||||
|
|
|
@ -1184,6 +1184,8 @@ const message = {
|
|||
upgradeHelper: 'The abnormal application needs to be synchronized to the normal state first',
|
||||
installWarn:
|
||||
' Port external access is not enabled, and cannot be accessed through the external network IP:port. Do you want to continue?',
|
||||
restoreWarn:
|
||||
'The restore operation will delete the current data of the application and restart it. This operation cannot be rolled back, continue?',
|
||||
},
|
||||
website: {
|
||||
website: 'Website',
|
||||
|
|
|
@ -1121,6 +1121,8 @@ const message = {
|
|||
allReadyInstalled: '已安裝',
|
||||
installHelper: '配置鏡像加速可以解決鏡像拉取失敗的問題',
|
||||
upgradeHelper: '異常應用需要先同步到正常狀態',
|
||||
installWarn: '未開啟端口外部訪問,無法通過外網IP:端口訪問,是否繼續? ',
|
||||
restoreWarn: '恢復操作將刪除該應用當前數據並重啟。此操作不可回滾,是否繼續?',
|
||||
},
|
||||
website: {
|
||||
website: '網站',
|
||||
|
|
|
@ -1128,6 +1128,7 @@ const message = {
|
|||
installHelper: '配置镜像加速可以解决镜像拉取失败的问题',
|
||||
upgradeHelper: '异常应用需要先同步到正常状态',
|
||||
installWarn: '未开启端口外部访问,无法通过外网IP:端口访问,是否继续?',
|
||||
restoreWarn: '恢复操作将删除该应用当前数据并重启。此操作不可回滚,是否继续?',
|
||||
},
|
||||
website: {
|
||||
website: '网站',
|
||||
|
|
Loading…
Reference in New Issue