Mozilla: Unterschied zwischen den Versionen
Aus Vosp.info
F (Diskussion | Beiträge) (→syncserver) |
F (Diskussion | Beiträge) (→firefox syncronisation) |
||
Zeile 24: | Zeile 24: | ||
make test | make test | ||
make serve | make serve | ||
+ | |||
+ | </source> | ||
+ | |||
+ | <source lang=sql> | ||
+ | create database dbname; | ||
+ | create user 'dbuser'@'localhost' identified by 'dbpasswd'; | ||
+ | grant all on dbname.* to 'dbuser'@'localhost'; | ||
+ | </source> | ||
+ | |||
+ | * syncserver/syncserver.ini | ||
+ | <source lang=config> | ||
+ | [syncserver] | ||
+ | public_url = http://firefox.domain.tld:5000/ | ||
+ | |||
</source> | </source> |
Version vom 15. September 2018, 13:42 Uhr
Inhaltsverzeichnis
Thunderbird / Icedove
Firefox / Iceweasel
Addons
- ghostery
- downloadhelper
- addblock plus
- WIFI Finder
- Empty Cache Button
firefox syncronisation
syncserver
- https://github.com/mozilla-services/syncserver
- https://mozilla-services.readthedocs.io/en/latest/howtos/run-sync-1.5.html
- https://sathya.de/blog/how-tos/setup-your-own-firefox-1-5-sync-server-on-debian-with-apache2-and-mysql/
minimal installation
git clone https://github.com/mozilla-services/syncserver
cd syncserver/
make build
make test
make serve
create database dbname;
create user 'dbuser'@'localhost' identified by 'dbpasswd';
grant all on dbname.* to 'dbuser'@'localhost';
- syncserver/syncserver.ini
[syncserver]
public_url = http://firefox.domain.tld:5000/
fxa-oauth-server
- identity_provider
- https://github.com/mozilla/fxa-oauth-server
minimal installation
git clone https://github.com/mozilla/fxa-oauth-server
cd fxa-oauth-server/
npm install
npm start
# .....
# fxa-oauth-server.bin.server.INFO: listening http://127.0.0.1:9010
Fehler
npm WARN lifecycle fxa-oauth-server@1.120.0~postinstall: cannot run in wd fxa-oauth-server@1.120.0 node scripts/gen_keys (wd=fxa-oauth-server)
npm vllt mal nicht als root ausführen
npm fixing helpers
npm audit fix
npm audit fix --force
npm audit