Everything posted by skois
-
[Support] Linuxserver.io - Nextcloud
Let me begin with this. Your setup is very complex FOR ME! i have a pfsense but haven't done much with it. That being said i'll just tell you what i would try and *i think* you didn't mentioned doing! Does the sync from client fails for ALL files? or some sync fine and others don't? If you connect to NC webui using the domain name, does it open? (nextcloud.domain.com) Can you upload from the webui without problems? Also just to be sure, 1443 is the host port on swag which is 443 on container side, and 444 is the host post in nextcloud which is mapped on 443 on container side. correctly? server ------ app 1443 (swag) 443 444 (nextcld)443
-
[Support] Linuxserver.io - Nextcloud
Good to hear! I always have a second nextcloud instance (db and everything) to test updates and apps! And test things! Saved me couple of times! Sent from my Mi 10 Pro using Tapatalk
-
[Support] Linuxserver.io - Nextcloud
You keep ignoring replies that shows you how to get your logs. Sorry but can't help anymore. Sent from my Mi 10 Pro using Tapatalk
-
[Support] Linuxserver.io - Nextcloud
In your config file there is a line stating your version. Change it to the 19.0.3, also on your app data folder there is an updater folder, delete the downloaded files if any. And try again updater.phar. Not sure if it will work. But this is what I would do Sent from my Mi 10 Pro using Tapatalk
-
[Support] Linuxserver.io - Nextcloud
Click on the docker icon => console run 'occ app:list' without quotes. this will list all the available apps and on the last rows it will tell which of them are disabled. if settings is disabled or any other essential app. run 'occ app:enable settings' or the name of the app you want.
-
[Support] Linuxserver.io - Nextcloud
I can't know if you can answer a config specific question if you cant even find logs which they are easily accessible from the GUI. The location for the things i asked is on the bottom of this post. 5 days ago. Please read the answers and remember people here are doing it for FREE. If you want in the feature help in the forums, first don't use that attitude and second, do some research. I'm pretty sure with a simple google search you can find where the logs are. Anyway, if you manage to find the logs. Post them and we'll try to see what the problem is.
-
[Support] Linuxserver.io - Nextcloud
/mnt/user/appdata/nextcloud/php/www2.conf The above file is the override file, changing the default wont keep the changes after a docker update This is what i have configured mine. The whole file is copied here ; Edit this file to override www.conf and php-fpm.conf directives and restart the container ; Pool name [www] ; Tune PHP-FPM https://docs.nextcloud.com/server/latest/admin_manual/installation/server_tuning.html#tune-php-fpm pm = dynamic pm.max_children = 150 pm.start_servers = 15 pm.min_spare_servers = 10 pm.max_spare_servers = 30
-
[Support] Linuxserver.io - Nextcloud
Maybe check the Settings > Logging if the errors there are more helpful on what's going on.
-
[Support] Linuxserver.io - Plex Media Server
If you ever edited the profiles for different devices, this might cause that problem. I had edited profiles for android about 5 months before and now i had x265 videos and they didn't even start to transcode, then i remebered that and deleted the custom profiles. Worked immidietly.
-
[Support] Linuxserver.io - Nextcloud
Hmm if the conf didn't change there might be something wrong in the adv tab. Anyway, i have to dig in traefik, i only heared about it a week ago!
-
[Support] Linuxserver.io - Nextcloud
You added the whole block on the advanced tab right? Not only the 4 lines. I still find this very hacky. I wanna start looking on the traefic instead of swag, but need to read a lot! I had a talk the other day with someone that used both traefic and nginx and HAproxy, he had simillar problems with nginx and haproxy but no with traefic.
-
[Support] Linuxserver.io - Nextcloud
AGAIN, i'm asking also for LOGS which i explained where to get them 3-4 posts above. The reason i ask also for Reverse proxy config/logs is, if you have 'overwritehost' => nc.domain.com, with will redirect you to your reverse proxy. Please if you need help, provide the asked info. otherwise is like asking us to GUESS what it MIGHT be going on. Also post the docker temp/logs of your database
-
[Support] Linuxserver.io - Nextcloud
- [Support] Linuxserver.io - Nextcloud
Ok, please also post the docker template(1) of swag or letsencrypt (the one you use), while you are on dashboard of unraid click on both nextcloud and swag/letsencrypt dockers and choose logs(2). post both logs. Also post the config file(3) of nextcloud (located on appdata/nextcloud/www/nextcloud/config/config.php and last post the nginx proxy conf(4) (should be in appdata/swag/nginx/proxy-confs/nextcloud.subdomain.conf (change letsencrypt with swag if you use letsencrypt). PLEASE BEFORE POSTING THOSE FILES, hide any sensitive info like domain, passwords, secrets, hashes, instanceid's, etc So in total i asked for 4 logs/confs- [Support] Linuxserver.io - Nextcloud
Can you please post an update on what steps you have done, what state is the installation now, with error logs or anything you can gather, also pics of the docker template. I'll help as much as i know and can!- [Support] Linuxserver.io - Nextcloud
About the assembling chunks problem, i found a fix. Go to NginxProxyManager edit your nextcloud proxy host, Go to advanced tab. Now copy the location block from your nextcloud.conf and add the following lines: (Set the times to your liking. I was doing some testing and had this big times. Also depends on your net speed. From my testing the time you need is time_to_upload + time_to_assemble_the_chunks, so on big uploads that needs eg. 1hour to upload you need like 1hour and 5 minutes timeout). proxy_connect_timeout 1d; proxy_send_timeout 1d; proxy_read_timeout 1d; send_timeout 1d; The pasted conf on your advanced tab should be like this: location / { proxy_connect_timeout 1d; proxy_send_timeout 1d; proxy_read_timeout 1d; send_timeout 1d; # Force SSL include conf.d/include/force-ssl.conf; # Proxy! include conf.d/include/proxy.conf; } # Custom include /data/nginx/custom/server_proxy[.]conf; }- [Support] Linuxserver.io - Nextcloud
By running "occ db:add-missing-primary-keys" those missing primary keys could be added manually while the instance keeps running. Right click on docker and go to console Sent from my Mi 10 Pro using Tapatalk- [Support] Linuxserver.io - Nextcloud
Nope,sorry, can't think of anything else right now [emoji849] Sent from my Mi 10 Pro using Tapatalk- [Support] Linuxserver.io - Nextcloud
Hmm, config looks ok, atleast for local it should work. Is there any logs on nextcloud logging panel? For external i would add this: 'trusted_domains' => array ( 0 => '10.10.10.254:9443', 1 => 'cloud.mydomain.me', ), 'trusted_proxies' => array ( 0 => 'NginxProxyManager', ), 'overwrite.cli.url' => 'https://10.10.10.254:9443', 'overwriteprotocol' => 'https', 'overwritehost' => 'cloud.mydomain.me', if you using swag change NginxProxyManager with swag or the name of your docker if you have named it different For the code block there is a button on the top of the edit box </>- [Support] Linuxserver.io - Nextcloud
Good to hear you are back online, i haven't had to roll back an update ever, but having appdata backups is a good thing!- [Support] Linuxserver.io - Nextcloud
Go to your /data folder, there should be a folder updater-randomstring inside backups should be your files. copy them to /config/www/nextcloud/ Do backup before you do anything tho- [Support] Linuxserver.io - Nextcloud
try running "occ maintenance:repair" or "updater.phar" depending on what you want. In this docker you dont need the sudo part.- [Support] Linuxserver.io - Nextcloud
No you didn't! but config.php contains a lot!- [Support] Linuxserver.io - Nextcloud
You must be using macs in your network? Go to your nextcloud data folder and delete all the .DS_Store files you find. Its temp files created by macs, safe to delete. Here is a script that will do it for you- [Support] Linuxserver.io - Nextcloud
If you create a drop link (upload only link) while you are connected via your local ip and try to upload with this link does it work? Can you share your appdata\nextcloud\www\nextcloud\config\config.php file? PLEASE HIDE SENSITIVE INFO! - [Support] Linuxserver.io - Nextcloud