mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 19:05:55 +02:00
[v1.1] 新增自动续签并修复了一些 bug
修复后端可能会 panic 的问题 修复前端逻辑问题,新增证书自动续签
This commit is contained in:
parent
27c4b82d54
commit
882fe8c074
121 changed files with 1656 additions and 798 deletions
|
@ -1,5 +1,6 @@
|
|||
<template>
|
||||
<div class="logo">
|
||||
<img :src="logo" alt="logo" />
|
||||
<p class="text">Nginx UI</p>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
|
@ -7,7 +8,12 @@
|
|||
|
||||
<script>
|
||||
export default {
|
||||
name: 'Logo'
|
||||
name: 'Logo',
|
||||
data() {
|
||||
return {
|
||||
logo: require('@/assets/img/logo.png')
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
|
@ -31,7 +37,7 @@ export default {
|
|||
font-size: 23px;
|
||||
line-height: 48px;
|
||||
height: 48px;
|
||||
text-align: center;
|
||||
padding-left: 52px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue