Help me . not upload in file

not upload in file and not show upload, while me pull file in web notification "You don’t have permission to upload or create files here" , but can upload in gallery
i'm use ubuntu 16.04
php 7.0
nginx
owncloud 9.1.6
thanks for awnser !

file config nginx.
server {
server_name cloudnine.com;

access_log /var/log/nginx/your_domain-access.log;
error_log /var/log/nginx/your_domain-error.log;
root /var/www/html/owncloud;

location / {
    index index.php;
    try_files $uri $uri/ /index.php$is_args$args;
}

location ~ \.php$ {
    include snippets/fastcgi-php.conf;
    fastcgi_pass unix:/run/php/php7.0-fpm.sock;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}

}

Hello,do you have checked the authorization for directories ?

That doesn't looks like the needed nginx config provided at https://doc.owncloud.org/

i'm configure permission for www-data folder owncloud

You can be explain more than
please help me !

I think there is a reason why the documentation has an own section with a nginx configuration:

https://doc.owncloud.org/server/latest/admin_manual/installation/nginx_configuration.html

ok. thanks you . i will configure same as they :slight_smile: