mozilla-services / syncserver

Run-Your-Own Firefox Sync Server
Mozilla Public License 2.0
1.87k stars 143 forks source link

syncserver not starts after commits switch to syncstorage-rs #253

Open misterhsp opened 4 years ago

misterhsp commented 4 years ago

The syncserver doesn't work anymore with my fxa-sefhosting since the commits to syncstorage-rs . Before these commits it worked fine for many months.

I start it as follows. What has to change that it works again.

cd /opt/syncserver export SYNCSERVER_PUBLIC_URL=https://fxa.localhorst.home:5000 export SYNCSERVER_SECRET=xxxxxxxxxxxxxxxxxxx export SYNCSERVER_SQLURI=pymysql://fxa:xxxxxxxx@hsp2.localhorst.home/syncserver export SYNCSERVER_IDENTITY_PROVIDER=https://fxa.localhorst.home:3030 export SYNCSERVER_OAUTH_VERIFIER=https://fxa.localhorst.home:9000 export SYNCSERVER_BROWSERID_VERIFIER=https://fxa.localhorst.home:5050/v2 export SYNCSERVER_BATCH_UPLOAD_ENABLED=true export SYNCSERVER_ALLOW_NEW_USERS=true export SYNCSERVER_FORCE_WSGI_ENVIRON=true export PORT=5000 export REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt /usr/bin/dumb-init /opt/syncserver/docker-entrypoint.sh server &

Thank you...

fzzzy commented 4 years ago

Hi,

Do you see any kind of error message that would help us debug?

Thanks!

misterhsp commented 4 years ago

There the syncstorage-rs is cloned into the python-server. I do not understand how this should work together. With me it doesn't work anymore. Even if you follow the README exactly, nothing works here anymore. As I already mentioned, I host fxa completely by myself, so also auth-server etc. I get nothing started anymore.

To be honest, it would be better to bring the Python-server to Python3 for self-hosting.

mike2307 commented 4 years ago

This is probably the same as https://github.com/mozilla-services/syncserver/issues/252

misterhsp commented 4 years ago

Am 15.10.20 um 19:10 schrieb mike2307:

This is probably the same as #252 https://github.com/mozilla-services/syncserver/issues/252

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/mozilla-services/syncserver/issues/253#issuecomment-709466748, or unsubscribe https://github.com/notifications/unsubscribe-auth/AKGJLRPDYSGIZFPXLVSFETDSK4UJFANCNFSM4SCSM5QQ.

Unfortunately this does not help me. I still use the last Python server that is still working.

...