Reverse engineered obsidian sync server (NOT OFFICIAL)
Warning
The main branch is the development branch. For stable usage, use the latest release.
Note
If you have the time and energy, feel free to help out with PRs or suggestions.
- End to end encryption
- Basic sync
- File history/recovery/snapshots
- Works natively on IOS/Android/Linux/MacOS/Windows... (via the plugin)
These features are not in the latest release but in the main branch. They might not be fully tested and are probably unstable.
- Broadcast changes: Updates to files will be broadcast to all devices connected to the vault. This allows you to use multiple devices at once and have the files be synced in real time.
- Fix bugs
- Sharing notes
- Publish
git clone https://github.com/acheong08/obsidian-sync
cd obsidian-sync
export HOST=<YOUR DOMAIN NAME>
go run cmd/obsidian-sync/main.go
- Use nginx or cloudflare to proxy & handle TLS/SSL
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
location / {
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:3000/;
}
server_name _;
}
go run cmd/signup/main.go
Tested on
- IOS
- Linux (Flatpak)
While we have no qualms with reverse engineering as a playground for experimentation, Obsidian Sync is a service we intend to keep first-party only for the foreseeable future. - obsidianmd/obsidian-releases#2353
This plugin will not be part of the official community plugins list.
- Install https://github.com/acheong08/rev-obsidian-sync-plugin
- Go to settings
- Set API endpoint
Known bugs:
Cannot restart plugin (for whatever reason you might want to do that...) - Restart the app if you want to reload this particular plugin
Report all bugs in this repository.