Questions tagged [nextcloud]

Nextcloud is an open-source software suite that provides a location-independent storage area for data (cloud storage).

Nextcloud is an open-source software suite that provides a location-independent storage area for data (cloud storage). The project was launched to create a free alternative to commercial cloud providers. In contrast to commercial storage services, Nextcloud can be installed on a private server at no additional cost.

The project is based on PHP and a SQLite, MySQL or PostgreSQL database, so Nextcloud can run on all platforms that meet these requirements. Nextcloud can be operated via a web interface and is thus not tied to a particular operating system. However, native applications, such as File Manager or Group Wares can interact with Nextcloud via an interface and provide data and files locally.

Website: https://nextcloud.com/

Twitter: https://twitter.com/nextclouders

Facebook: https://www.facebook.com/Nextcloud-1032807203462807/

484 questions
2
votes
1 answer

How to overwrite http Content-Disposition header in nginx.conf location block?

I have a reverse proxy server that takes file from fileserver than sends them to user. I want to change filename before sending. I wrote a rule like below location ~ downloads/(.*) { proxy_pass …
2
votes
1 answer

is there a full Nextcloud API accessable from outside?

I use Nextcloud as a normal user to store and share files. I decided to use it as a backend for a web application I am developing so that I can store the files in Nextcloud while the frontend is done by me. I spent some hours on the API…
UnDiUdin
  • 14,924
  • 39
  • 151
  • 249
2
votes
1 answer

update nextcloud inside docker

After accidental run, I can't get nextcloud's database and image in sync. My database is somehow updated to the latest version, but the image (apps) are not. In my config.php the version is: 'version' => '20.0.5.2' My version.php shows: $OC_Version…
d.popov
  • 4,175
  • 1
  • 36
  • 47
2
votes
2 answers

Nginx Proxy Manager Bad Gateway (Docker Wordpress and Nextcloud)

I've a Raspberry at home and I try to run the Following setup : Nginx Proxy Manager (jc21/nginx-proxy-manager) as reverse proxy to acces Portainer (portainer/portainer-ce) Wordpress (docker official image) Nextcloud (docker official image) It's…
user9225274
2
votes
1 answer

Refused to send form data to 'domain' because it violates the following Content Security Policy directive

This is a recent persistent issue I'm unable to solve. The same solution was working just fine a year ago and I' unable to rectify it as the solution has a number of components/blocks. Not sure where is the problem exaclty. Basically the browsers is…
2
votes
1 answer

Flutter + DIO: How to pass options from curl command in a request via DIO?

I am trying to perform a GET request to a NextCloud server. The NextCloud documentation gives an example how to perform the request with a curl command: curl -u username:password -X GET 'https://cloud.example.com/ocs/v1.php/...' -H "OCS-APIRequest:…
Christian
  • 217
  • 3
  • 11
2
votes
0 answers

snap nextcloud inside lxd, apparmor fail

I've got these fails with my nextcloud service which runs in LXD container via snap audit: type=1400 audit(1617309095.824:9617): apparmor="DENIED" operation="ptrace" namespace="root//lxd-nextcloud_"…
Petr Klein
  • 797
  • 2
  • 9
  • 23
2
votes
0 answers

Nextcloud: upload large files

I have a Nextcloud 18 on Apache/PHP 7.3, behind a reverse proxy (out of my control). On an upload of large files (over 2-3GB) the upload breaks, but only SOMETIMES! On the client (browsers web-dev console) I get: [Error] (3) {type:…
Hermann Schwarz
  • 1,495
  • 1
  • 15
  • 30
2
votes
0 answers

Installing nextcloud (helm) on linode k8s (v1.19) cluster with nginx-ingress tls/ssl encryption (let's encrypt) dosen't work as expected

I tried to install nextcloud on a Linode k8s managed cluster with helm. The installation process was no problem. Everything worked fine. My nextcloud instance is tls encrypted, but when I try to log in, nothing happens. In the console of the browser…
2
votes
0 answers

Generate Downloadable Link in Nextcloud

I need to generate a downloadable (direct) link in nextcloud within Javascript. After reading Direct Download, my approach was: const url = window.OC.linkToRemote('ocs/v2.php/apps/dav/api/v1/direct'); fetch(url, {method: 'post', body: 'fileId=3'}) …
Michael Hirschler
  • 2,345
  • 16
  • 28
2
votes
0 answers

Unable to Access Nextcloud Web Interface After Installing in Ubuntu Server 20.04

I just installed nextcloud on my Ubuntu Server 20.04 (local network). The installation finished without problems. Using this tutorial https://www.digitalocean.com/community/tutorials/how-to-install-and-configure-nextcloud-on-ubuntu-20-04 so I…
miatech
  • 2,150
  • 8
  • 41
  • 78
2
votes
1 answer

502 Bad Gateway Error on Nextcloud Docker Container proxied through Subdomain on Nginx Webserver

I am running an Nginx Webserver on my Raspberry Pi 4. I am trying to configure a reverse proxy on subdomain to a Nextcloud Docker container. However I am getting a 502 Bad Gateway error when I try to visit this container in my browser. I have made…
2
votes
1 answer

Nextcloud not connecting to Redis

On a Nextcloud install I am receiving the error No memory cache has been configured. To enhance performance, please configure a memcache, if available. Further information can be found in the documentation. So I have installed APCu, Redis,…
i716
  • 67
  • 1
  • 11
2
votes
1 answer

Nextcloud notification on new files

I try to get information about new uploaded files from our Nextcloud instance. In the last years I have used two things: the filesystem of the Nextcloud and the mail mechanism. On filesystem level I can use the inotify-tools to monitor changes on…
witchi
  • 345
  • 3
  • 16
2
votes
1 answer

iteration over createreadstream in node js using webdav downloads empty files

im trying to download some files from a folder on nextcloud,using webdav. i want to iterate over folder and download all the files in it,here is my code: let dir = "/foo" let folder = await WebDav.getDirectoryContents("bar") folder is returned as…
ShayanJZ
  • 61
  • 4