Categories

  • Communities where Chinese is the primary language for posts.

    4 Topics
    8 Posts
    Wei WangW
    获奖作品 【转发】各位摄友好,2025安华《密西根的春天》摄影展已评选出优秀作品(详见下图), 我们向获奖作们表示祝贺 同时也感谢大家的积极参与和支持。希望明年会有更多的摄友参与。 请各位获奖者于10/5前往安华中秋晚会现场领取奖状和奖品。 一等奖 刘小鱼 [image: AP1GczMj5mO7KX7l5EYbtS5iBIc-t_aPC2o3KUqJxAM7OzVIxj0tMRSfYsvdAh83cyhAwN5thdnxizGPbGN8cDdGTfO72_ezbzjQU8_Ngb4u5BCxc9VHcts=w2400] 二等奖 苏宁 [image: AP1GczOhGzWFMaImNwCiS3p-17sFIkO0NAjkh2mlgnMbIvF86QiCP88aVb4FeyXTfuVlrenySoJE6dTP0kdpIbIMeXliv-ZwPYwftBnpKwOe5D8pC_fl4vM=w2400] 马秀君 [image: AP1GczPyIk1a16DnCDMn_t-h-F7HbkQQoQNzW8D_laniDT0FRdajmypnI6pBybPqTwJA8fz0ZMuyrxo7g6fCNUAkfe-QfAt1FBg7fznMKb-xwFbD8GY9UT0=w2400] 三等奖 赵卓 [image: AP1GczPOQvCBP5f6tTc7-GUX83ZvT9c-olcWD0vD4KzYilZMNk9TS6wlAZHLuig64GEe1Ak-F2k5Vr7yIexydDcZr2Ms0jYBT4v-MW_64RdMFvT91jF7Gi0=w2400] 杨豪 [image: AP1GczPa07f1Te4mfuZTvtv4NmbSO1kny6wruOFaek8eX9GxoH5neWt8LWvDnbWf133O6n2eeHHI5fzL_wYY1SHowvFmZGqPyKIx6pRf8H9OgJdedKhmP_8=w2400] 万义麟 [image: AP1GczNzUmNKJpzq8Z1ATtqPshaqlZGIqcCtsTyEWBpFNUqIWuBk9CObv1Rt75SoNMAXvBjvD9JjAsBDbWHK52PwlNP8fqGoTBvzzSV4kGufD8oUyCzppXs=w2400]
  • Announcements regarding our community

    2 Topics
    2 Posts
    ww9riversW
    今天安装了nodebb-plugin-embed 这个插件。 插件的文档声称支持以下这些媒体: Coub Twitch (video and channel) Vimeo Vine Youtube (short and normal URL) Framatube Blender PeerTube Dailymotion Soundcloud Mixcloud Spotify 详细的使用说明在 NodeBB Community 里。 这个插件与本站的 NodeBB 版本似乎还不兼容。目前先禁用……看看是否能尽快修复。 最终成功的,是这个插件 nodebb-plugin-link-preview: 下面是安华彩虹计划的一个 YouTube 视频: https://www.youtube.com/watch?v=8VIyyyYCB-o
  • 这儿可以有什么聊什么……

    8 Topics
    11 Posts
    ww9riversW
    前面聊到 Homelab 设置,这个周末有点时间,就把前一个星期已经安装好的 Vaultwarden 软件给设置好。 前文说到,原来在工作中使用过一个密码系统,回想起来,应该是 LastPass。卸载、删除 LastPass 之后,也试过用 bitwarden,但是一直想最好在自家的机器上用,而不借助第三方。 前些天发现 Vaultwarden 这个软件兼容 Bitwarden 的后端接口,就是可以使用手机端的 bitwarden app。这样家人共享这个后端就容易多了。 再来倒叙一下。 安装 我是用 Proxmox 建了一个 Debian Linux 容器,建这个容器也很容易:Proxmox 社区有很多辅助脚本,这个 Vaultwarden 脚本可以帮助在 Proxmox 终端里直接完成 Vaultwarden 的安装。 Vaultwarden 是一个密码保管软件,系统安全至关重要。所以安装过程就直接设置了 HTTPS。这个 HTTPS 层用的是自签服务器证书,使用当然没有障碍,但是其本身有一定安全隐患。因此,第二步是自建一个私有的 TLS 证书系统……其实,证书系统应该预先完成……这个后面再细聊。 Vaultwarden 还支持 Docker 安装,所以,没有 Proxmox 的话,安装起来应该也不太难。 使用 在手机上打开 bitwarden,用户可以选择后端。你可以选用 bitwarden.com 或者 bitwarden.eu,第三个选项 Self-hosted 就是“自托管”。 [image: G5WKCyNWgAAG929?format=jpg&name=4096x4096] 这之后,bitwarden 的使用与连接 bitwarden.com 后端应该没有区别。
  • Got a question? Ask away!

    0 Topics
    0 Posts
    No new posts.
  • Blog posts from individual members

    4 Topics
    4 Posts
    ww9riversW
    Recently, I have been dealing with an issue with rsyslog server, where it logs error messages with TLS connections. I posted a question on ServerFault but have not received any response for 10 days. It is hard to debug TLS connection issue as application data is encrypted in the traffic. I tried tcpdump to capture some packets anyways. Looking through the captured packets, it seems that the syslog client, in this case an EPIC server, may have dropped the TLS connection without properly closing it. Checking this theory with ChatGPT - here is what may have been happening: A party to a TCP connection should send a close_notify inside the TLS stream to properly close the connection; TLS library receives data until end-of-stream (read returns 0 or error) OR a close_notify is processed. If a close_notify was received before end-of-stream, the TLS library can report a clean shutdown; otherwise, it may report an error or truncated data. If a peer closes its TCP write side without sending close_notify, your TLS library will report an unexpected EOF, truncated data, or similar error. That seems to match the errors emitted by rsyslogd. For now, we're just going to chalk it up to that unless any further issues pop up. If I have time, I might dig into the rsyslog source code on GitHub.