Se você deseja executar o servidor Mozilla Sync por trás da instalação do Nginx, aqui está a configuração simples.
upstream mozilla_sync { server localhost:5000 fail_timeout=0; }
server {
# ... some your stuff
location /sync/ {
rewrite /sync/(.*) /$1 break;
proxy_pass http://mozilla_sync;
}
}
Lembre-se: configure SSL / TLS em seu servidor Nginx para privacidade e segurança.
De http://podtynnyi.com/2013/09/07/mozilla-sync-server-under-nginx/