Everything posted by knex666
-
[Support] knex666 - Nextcloud
Optional. If you wish Do edit files from shares from nextcloud and your OS
-
[Support] knex666 - Nextcloud
Yes
-
[Support] knex666 - Mopidy
I just added my Snapcast Template to the App-Repo you should be able to install it in community apps soon. I never tryed to play different music. Normally you use mopidy because you want to use Google Audio/Home or Snapcast to stream and sync music to every room and Mopidy is your central music station. Give it a try - I dont know
-
[Support] knex666 - Nextcloud
are you shure that "nextcloud" is the name of that docker container? for me it seems to be ok.
-
[Support] knex666 - Mopidy
jip but you can use snapcast for android - that works well
-
[Support] knex666 - Nextcloud
Please read the first Thread-Post "FOLDER RIGHTS" to solve this problem right away
-
[Support] knex666 - Nextcloud
As written at the first page of this Thread:
-
[Support] knex666 - Nextcloud
So this is really offtopic here. Which MySQL docker are you running. It would be better to leaf your question there. If you google your message there are some with the same problem: https://stackoverflow.com/questions/52364415/php-with-mysql-8-0-error-the-server-requested-authentication-method-unknown-to Cheers
-
[Support] knex666 - Nextcloud
The config from my repo the image from the official docker hub nextcloud repo
-
[Support] knex666 - Nextcloud
Yes, just config for unraid. Yes, If you Set the repo to latest it Auto pulls New images Cheers
-
[Support] knex666 - Nextcloud
Hey, I am not part of the official nextcloud team and did not create the image itself but I created the unraid template for this container. Its simple to do that. You can follow this guide to create your first image: https://docs.docker.com/get-started/part2/ You can do this by creating a dockerfile or you can run an image eg. "docker run -it ubuntu /bin/bash" install and configure everythink and later push this image to the repository. You will find good guids on youtube "docker create image" To create a unraid template for you image you just create a new docker on unraid and copy your template xml to a git repo. You will find some examples here: https://github.com/maschhoff/docker Last you have to talk to Squid to become a community developer Cheers
-
[Support] knex666 - Nextcloud
/usr/local/etc/php/ but since you search for the error with the max upload size - search at your reverse proxy. Nextcloud is setup fine to get large files. If you are running LetsEncrypt edit the nginx config Cheers
-
[Support] knex666 - Nextcloud
You have to mount that file to keep your editing. I think it will be in /etc/...
-
[Support] knex666 - Nextcloud
Fine, that solution and eventhough the solution about OnlyOffice is written down at the forst post of this Thread
-
[Support] knex666 - Nextcloud
Hi, could you please delete thy chiper from your quotation? I think its because there is no http/s rewrite. It trys to connect to HTTP://...:443 that never would work anyway. Cheers
-
[Support] knex666 - Nextcloud
This is my "outside" conf - works well. Please note that this is not a LetsEncrypt config. You will find a lot of examples for LetsEncrypt. server { listen 443 ssl; listen [::]:443 ssl; server_name cloud.mydomain.com; root /var/www/html; server_tokens off; ssl_certificate /etc/letsencrypt/live/cloud.mydomain.com/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/cloud.mydomain.com/privkey.pem; # managed by Certbot ssl_ciphers '*******!KRB5-DES-CBC3-SHA'; ssl_prefer_server_ciphers on; add_header Strict-Transport-Security max-age=15768000; location /{ proxy_pass http://[1a01:123:4c1:f260::35b]/; proxy_http_version 1.1; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr;#proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } server { if ($host = cloud.mydomain.com) { return 301 https://$host$request_uri; } # managed by Certbot listen 80; listen [::]:80; server_name cloud.mydomain.com; return 404; # managed by Certbot }
-
[Support] knex666 - Nextcloud
Here is an answere from the nextcloud community. very complex but doable: https://help.nextcloud.com/t/open-onlyoffice-from-internal-and-external-network-not-possible/77861
-
[Support] knex666 - Nextcloud
After 95% you gave up? You can only get access with http - solutions with internal an external reverse proxy are given in a lot of posts for unraid. Only office only works on one network from outside or from inside - see the post above this, there is no solution jet.
-
[Support] knex666 - Nextcloud
docker exec -u www-data nextcloud /var/www/html/occ Thats totally my problem too and I did not found a solution. You can choose between one of those addr. Maybe a question for the nextcloud community. Since I can edit my stuff in my local network with the office suite I stoped going for a research. please feel free to do so!
-
[Support] knex666 - Mopidy
What is aadbbd6bbef9 in the config? You should be fine without spotify etc.
-
[Support] knex666 - Nextcloud
just use docker exec
-
[Support] knex666 - Mopidy
Na, that wound work: "docker exec Mopidy mopidy local scan" or "docker exec Mopidy /folder/to/mopidy local scan"
-
[Support] knex666 - Mopidy
docker exec CONTAINER_NAME mopidy local scan should work or docker exec CONTAINER_NAME /bin/sh mopidy local scan did not test it just now. I´ve never uploaded that container. thought I did. its the repository kevineye/snapcast with post argument: snapserver -s pipe:///data/snapfifo?name=Example&sampleformat=44100:16:2 and a mapping from /mnt/user/appdata/mopidy/tmp/ to /data an example config for mopidy is uploaded to github. Works but for me its not that beautiful because of the mussing Iris UI
-
[Support] knex666 - Nextcloud
Because its not LSIO and I did not change any configuration. You habe two options to get this done 1. Use a reverse proxy with self signed certificate 2. Did not test this but you can Mount your self aigned certificates and your mounted edited apache config. I prefer Option 1 Cheers
-
[Support] knex666 - Nextcloud
Please read the First post. Therefore you need a let's encrypt docker. Nextcloud has no ssl configuration.