惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
Spread Privacy
Spread Privacy
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
SecWiki News
SecWiki News
腾讯CDC
P
Privacy International News Feed
Webroot Blog
Webroot Blog
J
Java Code Geeks
爱范儿
爱范儿
A
About on SuperTechFans
S
Secure Thoughts
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
D
DataBreaches.Net
Cloudbric
Cloudbric
Security Archives - TechRepublic
Security Archives - TechRepublic
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
C
Cyber Attacks, Cyber Crime and Cyber Security
P
Proofpoint News Feed
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Security Latest
Security Latest
Forbes - Security
Forbes - Security
小众软件
小众软件
www.infosecurity-magazine.com
www.infosecurity-magazine.com
C
Cybersecurity and Infrastructure Security Agency CISA
T
Threatpost
量子位
MongoDB | Blog
MongoDB | Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
月光博客
月光博客
W
WeLiveSecurity
P
Privacy & Cybersecurity Law Blog
Vercel News
Vercel News
Google Online Security Blog
Google Online Security Blog
云风的 BLOG
云风的 BLOG
GbyAI
GbyAI
S
Security @ Cisco Blogs
T
The Exploit Database - CXSecurity.com
Help Net Security
Help Net Security
V
Visual Studio Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
Application and Cybersecurity Blog
Application and Cybersecurity Blog
博客园 - 聂微东
P
Proofpoint News Feed
C
CERT Recently Published Vulnerability Notes
Attack and Defense Labs
Attack and Defense Labs

Confluence

conflunce server 授权要不要续费一年。 - V2EX confluence 目录前面总是多一个点? - V2EX Confluence 有什么好的方式能画架构图嘛? - V2EX 求助:中了 confluence 挖矿病毒 - V2EX 关于 Confluence 5.4 里为 PDF 导出功能上传新字体时的这个错误信息 - V2EX Confluence 的中文变 ??? 的问题 - V2EX
confluence 停止 server 停止支持 是否要提前迁移? - V2EX
al0ne · 2021-03-04 · via Confluence

这是一个创建于 1928 天前的主题,其中的信息可能已经有所发展或是发生改变。

目前所有的笔记都在 confluence 里面,买了个最基础的单用户版本,有必要提前迁移吗?迁移的话 有没有什么推荐的啊

heyjei

1

heyjei      2021 年 3 月 4 日

不迁移,我趁停止销售之前升级到了最新版,我觉得当前的版本可以再战十年。

vibbow

2

vibbow      2021 年 3 月 4 日

Confluence Server 和 Confluence Data Center 是同一个安装包,只是根据输入授权的不同启用的功能不同。

(所以只要你的授权够长,也是可以一直更新的)

zhongrs232

3

zhongrs232      2021 年 3 月 4 日

我在停售前一周买了一个 10 人以下的授权,现在感觉非常够用,功能很强大,还支持自定义 HTML 和插入 JavaScript,定制也很方便

heyjei

6

heyjei      2021 年 3 月 5 日

@al0ne 不知道,这东西配置这么复杂,你直接用镜像创建新的 VPS 不就行了嘛

zhongrs232

7

zhongrs232      2021 年 3 月 5 日

@al0ne 应该可以使用,atlassian 账号页面可以重新生成授权码,大概思路是在新的 VPS 上安装完 confluence 之后会生成一个新的服务器 ID,然后用这个服务器 ID 再生成新的授权码,新的授权码使用后原来的服务器会自动失去激活

aheadlead

9

aheadlead      2021 年 3 月 5 日

@zhongrs232 #8 老哥你就这么放在公网上了啊……
我是想知道如何自定义 HTML 和插入 JavaScript,能否推荐一点材料?

zhongrs232

11

zhongrs232      2021 年 3 月 5 日

@aheadlead 给你个参考,HEAD 尾部插入下面的代码,可以增加一条导航栏链接和自定义页脚,加上备案号声明:
```
<style>
.no-after:after {
content: none;
}
</style>
<script>
AJS.toInit(function(){
AJS.$('.aui-header-primary .aui-nav').append('<li><a href="https://midlane.top/confluence/spacedirectory/view.action" class=" aui-nav-imagelink">空间目录</a></li>');
AJS.$('.aui-header-primary .aui-nav li').first().css("display", "none");
AJS.$('#poweredby').prepend('<li><a href="#">浙-IPC 备案号 XXXXXX</a></li>');
AJS.$('#poweredby > li').slice(-3).remove();
AJS.$('#poweredby > li').last().addClass('no-after');
});
</script>
```