1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ffsync_ynh.git synced 2024-09-03 18:26:38 +02:00
ffsync_ynh/README.md

69 lines
2.9 KiB
Markdown
Raw Normal View History

2021-01-21 13:26:13 +01:00
# Mozillas Sync Server for YunoHost
2020-07-23 23:48:02 +02:00
[![Integration level](https://dash.yunohost.org/integration/ffsync.svg)](https://dash.yunohost.org/appci/app/ffsync) ![](https://ci-apps.yunohost.org/ci/badges/ffsync.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/ffsync.maintain.svg)
[![Install ffsync with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=ffsync)
2020-06-15 13:25:21 +02:00
*[Lire ce readme en français.](./README_fr.md)*
> *This package allow you to install ffsync quickly and simply on a YunoHost server.
If you don't have YunoHost, please see [here](https://yunohost.org/#/install) to know how to install and enjoy it.*
2020-04-16 23:33:43 +02:00
## Overview
2018-06-28 23:09:33 +02:00
The Sync Server provides a replacement for Firefoxs default server (hosted at Mozilla).
By default, a server set up will defer authentication to the Mozilla-hosted accounts server at [https://accounts.firefox.com](https://accounts.firefox.com). So you will still have to authenticate at Mozilla, but _the storage of your information will be done on your host_.
2020-10-06 22:41:48 +02:00
**Shipped version:** 1.9.1
2020-04-16 23:33:43 +02:00
## Documentation
2021-01-21 13:26:13 +01:00
* Official documentation: https://mozilla-services.readthedocs.io/en/latest/howtos/run-sync-1.5.html
2020-06-15 13:25:21 +02:00
* YunoHost documentation: https://yunohost.org/#/app_ffsync
2020-06-15 13:25:21 +02:00
## Configuration
Once installed, reaching `http://domain.tld/path` should show a page explaining how to configure it.
2020-04-16 23:33:43 +02:00
#### Supported architectures
2020-07-23 23:48:02 +02:00
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/ffsync%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/ffsync/)
2020-04-16 23:33:43 +02:00
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/ffsync%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/ffsync/)
2018-06-28 23:09:33 +02:00
## Links
* Report a bug about this package: https://github.com/YunoHost-Apps/ffsync_ynh/issues
2020-04-16 23:33:43 +02:00
* Upstream app repository: https://github.com/mozilla-services/syncserver
2019-05-09 09:42:28 +02:00
* YunoHost website: https://yunohost.org/
---
2021-01-21 13:26:13 +01:00
## Developers info
Please do your pull request to the [testing branch](https://github.com/YunoHost-Apps/ffsync_ynh/tree/testing).
To try the testing branch, please proceed like that.
```
sudo yunohost app install https://github.com/YunoHost-Apps/ffsync_ynh/tree/testing --debug
or
sudo yunohost app upgrade ffsync -u https://github.com/YunoHost-Apps/ffsync_ynh/tree/testing --debug
```
2020-11-28 18:15:25 +01:00
### Solving problems with Android
The sure-fire way to know what Sync on Android is really doing is to observe the Android device log using adb logcat. Youll want to bump your log-level:
```
adb shell setprop log.tag.FxAccounts VERBOSE
```
Then, you can observe the log using:
```
adb logcat | grep FxAccounts
```
Its best to observe the log while you force a sync from the Android Settings App. You should see output like:
```
D FxAccounts(...) fennec :: BaseResource :: HTTP GET https://token.stage.mozaws.net/1.0/sync/1.5
...
D FxAccounts(...) fennec :: BaseResource :: HTTP GET https://sync-4-us-east-1.stage.mozaws.net/
```