Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Update Nginx config in the wiki #164

Open
NTag opened this issue Aug 31, 2022 · 0 comments
Open

Update Nginx config in the wiki #164

NTag opened this issue Aug 31, 2022 · 0 comments

Comments

@NTag
Copy link

NTag commented Aug 31, 2022

The current one didn't worked for me, the /sync endpoint wasn't responding and the page was displaying "Connecting…".

This one worked:

location / {
    proxy_pass http://127.0.0.1:3000/;

    location /sync {
        proxy_pass http://127.0.0.1:3000/sync;
        proxy_set_header Connection '';
        proxy_http_version 1.1;
        chunked_transfer_encoding off;
        proxy_buffering off;
        proxy_cache off;
    }
}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant