2022年12月24日

Firefox 108 滑鼠游標消失的問題

最近Firefox 升級到 108 之後發現

自訂的游標圖示會顯示錯誤,甚至有時後會直接消失

檢查Log發現是Firefox無法讀取到我的自訂游標

firefox-bin[2959]: Unable to load hand2 from the cursor theme firefox-bin[2959]: Unable to load left_ptr from the cursor theme firefox-bin[2959]: Unable to load xterm from the cursor theme

而且是放在~/.icons下的游標才會有這個問題

所以目前有一個Workaround方式就是將目前使用的游標放到

mv ~/.icons/* /usr/share/icons/

目前已經有人發了 Issue 給 Mozilla: https://bugzilla.mozilla.org/show_bug.cgi?id=1802877

su + systemctl = Failed to connect to bus: No medium found

最近想用 su - user 對修改 user 的 systemd Unit 的時候發現 systemctl --user 的所有操作都會回報 Failed to connect to bus: No medium found

 後來找到了這篇文章 只要將 su - user改為使用machinectl shell user@.host就可以正常使用 systemctl --user 了

 

從 Caddy2 對 Syncthing 以子路徑進行反向代理

有些服務 的 web UI 需要執行在網頁的根路徑或特定路徑上

例如 transmission 就需要路徑 /transmission/web/

而 Syncthing 就必須是 / 才能正確打開Web UI

如果直接反向代理的話就會發現有許多圖片或restful api會找不到

我們需要在代理時將多餘的子路徑去除才會正確找到檔案

在Caddy2下可以這麼做

http://myhost.org { handle_path /syncthing/* { reverse_proxy http://localhost:8384 { header_up Host {http.reverse_proxy.upstream.hostport} } } }

其中handle_path就會在轉送要求時將 syncthing/ 這個前綴移除

這樣有需要的話還可以在同一個host上代理多個syncthing

例如
http://myhost.org { handle_path /syncthing/* { reverse_proxy http://localhost:8384 { header_up Host {http.reverse_proxy.upstream.hostport} } } handle_path /syncthing2/* { reverse_proxy http://localhost:8385 { header_up Host {http.reverse_proxy.upstream.hostport} } } }