Thank you! I just applied the changes. We have made some progress because the progress bar actually shows up now when I try to upload a file. Unfortunately, I still get a network error shortly afterward.
ccnet.conf
[General]
USER_NAME = Me
ID = b6708019b7fa97939f8bec639ce4faf059cd8a91
NAME = Ben
SERVICE_URL = https://www.cloud.domain.com
[Client]
PORT = 13419
[Database]
ENGINE = mysql
HOST = 127.0.0.1
PORT = 3306
USER = seafile
PASSWD = Password
DB = ccnet-db
CONNECTION_CHARSET = utf8
seahub_settings.py
# -*- coding: utf-8 -*-
SECRET_KEY = "My_Key"
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'seahub-db',
'USER': 'seafile',
'PASSWORD': 'Password',
'HOST': '127.0.0.1',
'PORT': '3306'
}
}
FILE_SERVER_ROOT = 'https://cloud.domain.com/seafhttp'
seafile.conf
[fileserver]
port = 8082
host = 127.0.0.1
[database]
type = mysql
host = 127.0.0.1
port = 3306
user = seafile
password = password
db_name = seafile-db
connection_charset = utf8
I tried it with and without specifying the port (like described in the manual).