Change of ccnet-init commandline options

With seafile-server 7.1.5 I noticed that the tool ccnet-init in ccnet-server repo does not anymore provide parameters which were formerly allowed (–name, --port).

This breaks automatic provisioning I am using for seafile.

Could you help explaining:

  1. Was this done by intention?
  2. Doesn’t ccnet allow setting alternate names/ports anymore?
  3. In the ccnet (client) repository ccnet-init exists as well, but it was not changed there. Is anything build from these sources?

PS: I am not allowed to post links to the sources, so I had to omit them…

you can modify the gunicorn.conf.py file in the conf folder to modify the listening port

import os

daemon = True
workers = 5

# default localhost:8000
bind = "0.0.0.0:8000"
#### Pid
  pids_dir = '/home/boubou/cloud/seafile/pids'
  pidfile = os.path.join(pids_dir, 'seahub.pid')

  # for file upload, we need a longer timeout value (default is only 30s, too short)
  timeout = 1200

  limit_request_line = 8190

Thanks but I was talking about ccnet-server, it seems you are referring to the seahub configuration.

And my questions remain: I see ccnet-init as the official method to create a configuration, but it’s options were changed. So I want to understand why.

this might help you maybe