Fresh installation not working on Ubuntu

Hello all,

I allready read the entire forum, but still no luck.

I was looking for a new sync solution and seafile looks like it can do the job :slight_smile:

Unfortunately I cannot get it to work.

I made a fresh Ubuntu 16 install. After this I followed the Tutorial . but no luck.

Nginx is working, because if I run my url, it shows me the default nginx page.
But no redirect of what so ever. If I run url:8000 I receive connection refused.

The firewall is open:
To Action From


8000/tcp ALLOW Anywhere
8082/tcp ALLOW Anywhere
443/tcp ALLOW Anywhere
8001 DENY Anywhere
80 ALLOW Anywhere
22 ALLOW Anywhere
8000/tcp (v6) ALLOW Anywhere (v6)
8082/tcp (v6) ALLOW Anywhere (v6)
443/tcp (v6) ALLOW Anywhere (v6)
8001 (v6) DENY Anywhere (v6)
80 (v6) ALLOW Anywhere (v6)
22 (v6) ALLOW Anywhere (v6)

netstat -plntu show that the server is listening
indent preformatted text by 4 spaces
tcp 0 0 127.0.0.1:8000 0.0.0.0:* LISTEN 3784/python2.7
tcp 0 0 127.0.0.1:8080 0.0.0.0:* LISTEN 3306/python2.7
tcp 0 0 0.0.0.0:8082 0.0.0.0:* LISTEN 3307/seaf-server

server {
    listen 80;
    server_name url

proxy_set_header X-Forwarded-For $remote_addr;
# Reverse proxy for seafile
location / {
    fastcgi_pass    127.0.0.1:8000;
    fastcgi_param   SCRIPT_FILENAME     $document_root$fastcgi_script_name;
    fastcgi_param   PATH_INFO           $fastcgi_script_name;

    fastcgi_param    SERVER_PROTOCOL        $server_protocol;
    fastcgi_param   QUERY_STRING        $query_string;
    fastcgi_param   REQUEST_METHOD      $request_method;
    fastcgi_param   CONTENT_TYPE        $content_type;
    fastcgi_param   CONTENT_LENGTH      $content_length;
    fastcgi_param    SERVER_ADDR         $server_addr;
    fastcgi_param    SERVER_PORT         $server_port;
    fastcgi_param    SERVER_NAME         $server_name;
    fastcgi_param   REMOTE_ADDR         $remote_addr;

    access_log      /var/log/nginx/seahub.access.log;
    error_log       /var/log/nginx/seahub.error.log;
    fastcgi_read_timeout 36000;
}
# Reverse Proxy for seahub
location /seafhttp {
    rewrite ^/seafhttp(.*)$ $1 break;
    proxy_pass http://127.0.0.1:8082;
    client_max_body_size 0;
    proxy_connect_timeout  36000s;
    proxy_read_timeout  36000s;
    proxy_send_timeout  36000s;
    send_timeout  36000s;
}
#CHANGE THIS PATH WITH YOUR OWN DIRECTORY
location /media {
    root /home/seafile/seafile-server/seahub;
}

}

    indent preformatted text by 4 spaces    
CCNET.conf
[General]
USER_NAME = xxxxxx
ID = beb98722bcecesb573d8sdfb15ce6f9fbsdfasdas554a6edd499

NAME = ccvitaalsync
SERVICE_URL = url:8000

[Client]
PORT = 13419

I hope someone can help me out.