Files
Home-of-CS/content/page/links/index.md
T
2026-06-01 01:51:54 +08:00

159 lines
5.9 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: 关于
links:
- title: Cloudreve
description: 云存储平台。
website: https://cloud.cirrus.org.cn/
image: /logo/cloudreve_logo.svg
- title: Cloudreve (校内直连)
description: 云存储平台。
website: https://cloud-direct.cirrus.org.cn/
image: /logo/cloudreve_direct_logo.svg
- title: code-server
description: 在线IDE。
website: https://code.cirrus.org.cn/
image: /logo/code-server_logo.svg
- title: Gitea
description: Git存储库。
website: https://git.cirrus.org.cn/
image: /logo/gitea_logo.svg
- title: Gitea (校内直连)
description: Git存储库。
website: https://git-direct.cirrus.org.cn/
image: /logo/gitea_direct_logo.svg
- title: Memos
description: 笔记。
website: https://memos.cirrus.org.cn/
image: /logo/memos_logo.webp
- title: 静态网站导航页
description: 其实您眼前的这个页面已经起了导航功能……
website: https://static.cirrus.org.cn/
image: /favicon.png
- title: GeoGebra
description: 一款支持几何、代数、数据、绘图、统计和微积分的科学计算器。
website: https://static.cirrus.org.cn/geogebra/
image: /logo/geogebra_logo.png
- title: 音乐解锁
description: 移除音乐平台已下载音乐的加密保护。(请支持正版)
website: https://static.cirrus.org.cn/unlockmusic/
image: /logo/unlockmusic_logo.svg
- title: Uptime Kuma
description: 检查网站可用性。
website: https://status.cirrus.org.cn/
image: /logo/uptime_kuma_logo.svg
- title: Uptime Kuma (校内)
description: 检查校内直连访问可用性。
website: https://status-local.cirrus.org.cn/
image: /logo/uptime_kuma_local_logo.svg
menu:
main:
weight: 4
params:
icon: link
date: 2026-05-27 22:21:55+0800
comments: false
slug: "sudo_whoami"
---
## 关于我
我是白砂糖,是一名数学专业学生、插画爱好者、计算机爱好者。
## 开发记录
- 2026.5.31
- 全站启用HTTPS访问;
- 全站启用IPv4与IPv6双栈访问;
- 配置了FRP反向代理,全站所有功能可通过公网访问。
- 2026.5.27
- 为所有文章设置了3位Base62序号索引的唯一slug,得到了短URL;
- 添加了公网可用的新功能:Uptime Kuma,版本2.3.2
- 把Cloudreve更新到版本4.16.0
- 把Gitea更新到版本1.26.2
- Cloudreve和Gitea开始采用冷热数据分离架构,以及Redis缓存技术,冷访问时、浏览目录时无需唤醒机械硬盘,访问延迟从数百毫秒降低到几十毫秒。
- 2026.5.23
- 添加了校园网可用的新功能:Memos,版本0.28.0。
- 2026.4.23
- 添加了校园网可用的新功能:静态网站导航页。
- 2026.4.22
- 添加了校园网可用的新功能:code-server,版本4.116.0。
- 2026.4.14
- 尝试了自定义Taxonomy
- 优化了原主题的一处汉化问题;
- 网站的美术风格与内容结构应该还有个性化的空间,等我有时间会尝试进一步定制Stack主题。
- 2026.4.9
- 将引用的外部资源全部迁移至本网站服务器。
- 2026.1.13
- 为网站添加了ICP备案与公安联网备案信息。
- 2026.1.7
- 添加了校园网可用的新功能:GeoGebra。
- 2026.1.5
- 添加了校园网可用的新功能:Cloudreve,版本4.10.1
- 添加了校园网可用的新功能:Gitea,版本1.25.3
- 网站可通过公网访问。
- 2025.12.14
- 为网站添加了域名。
- 2025.12.13
- 网站于校园网范围内上线。
## 版权
若未特殊说明,本站内容根据[Creative Commons BY-NC-SA 4.0协议](https://creativecommons.org/licenses/by-nc-sa/4.0/deed.zh-hans)授权,具体请查看每篇文章下方的版权说明。
## 免责声明
- 本网站相关内容仅代表个人观点,不构成医疗、金融、法律等任何专业领域建议;
- 系统配置相关内容请确保在虚拟机中测试,以免造成数据资料损失;
- 本人欢迎您与我进行相关问题的探讨,纠正可能存在的内容错误;但由于本人已尽合理注意义务,对因使用本网站内容而可能造成的任何直接或间接损失,本人不承担任何法律责任。
## 服务架构
```mermaid
flowchart TD
subgraph PublicNetwork["公网"]
direction TB
subgraph F["阿里云 Fedora"]
F_router[FRPS]
F_status[Uptime Kuma 公网<br/>status]
end
end
subgraph CampusNetwork["校园网"]
direction TB
subgraph A["学校机房 Arch Linux"]
A_code[code-server]
A_memos[Memos]
A_static[静态网站]
A_kuma_local[Uptime Kuma 校内<br/>status-local]
end
subgraph M["校内 MacBook Pro"]
M_cloud[Cloudreve]
M_git[Gitea]
end
end
%% User 单独定义,不放进任何子图,自然跨越两个网络区域
User[用户 User]
User -->|"公网/校园网访问"| F_router
User -->|"校内直连"| M_cloud
User -->|"校内直连"| M_git
%% 跨网连接:公网 → 校园网
F_router -->|"1: FRP 隧道"| M_cloud
F_router -->|"1: FRP 隧道"| M_git
F_router -->|"2: FRP 隧道"| A_code
F_router -->|"2: FRP 隧道"| A_memos
F_router -->|"2: FRP 隧道"| A_static
F_router -->|"2: FRP 隧道"| A_kuma_local
%% 校内探测
A_kuma_local -->|"4: 校内直连探测"| M_cloud
A_kuma_local -->|"4: 校内直连探测"| M_git
%% 互相监控
F_status -->|"2: FRP 隧道<br/>监控 status-local"| A_kuma_local
A_kuma_local -->|"2: FRP 隧道<br/>监控 status"| F_status
%% 样式
classDef public fill:#e3f2fd,stroke:#1e88e5,stroke-width:2px
classDef campus fill:#fff3e0,stroke:#fb8c00,stroke-width:2px
classDef user fill:#e8f5e9,stroke:#43a047,stroke-width:2px,font-size:16px
class F public
class A,M campus
class User user
```