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

Update Nginx config in the wiki #164

@NTag

Description

@NTag

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;
    }
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions