OnlyOffice Community Server vs document server

What is the difference between them? And which one do i need for Seafile?
Thanks

Hi,
you only need the Document Server.
For the first tests use the Docker Image

The Community Server is the own file server, crm and so on of OnlyOffice.

Thanks. I was just wondering because the Seafile manual refers to the community server.

Do I also need a nginx reverse proxy entry to make it work?

Oh yes i find the manual a little bit confusing and hope my statement are correct. :wink:

I my test envirement all works fine, except the odt bug (see link)

Which use of components depends on your system environment.
I use seafile and Document Server docker image on the same ip with nginx as reverse proxy.

I also use seafile with nginx Reverse Proxy. Both seafile and onlyoffice are on the same machine with the Same ip.
Would you share your Reverse Proxy Setup for onlyoffice?
Thanks

I deployed the Document Server on Port 777

server {
    listen 443;
    ssl on;
    server_name onlyoffice.*;
    ssl_certificate     /etc/letsencrypt/live/mydomain/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/mydomain/privkey.pem;

    location / {
        proxy_set_header        Host $host;
        proxy_set_header        X-Real-IP $remote_addr;
        proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header        X-Forwarded-Proto $scheme;
        proxy_pass              http://localhost:777/;
  }
}
1 Like

@Jack please take a few minutes and check this scenario. Can you confirm this possible bug?

Perfect! Thank you very much.