theedon323

Members
  • Posts

    8
  • Joined

  • Last visited

Everything posted by theedon323

  1. Same error I'm getting. I'm using PIA. Rolled back to previous version and fixed the issue.
  2. Same here but I'm using SABNZBDvpn docker. Are you using PIA VPN? Once I disable proxy in the settings everything connects just fine.
  3. Is anyone using SWAG proxy-config sample? I'm getting a 502. Did you changed anything? I have created a subdomain "filebrowser" Emby and Nextcloud are working fine.
  4. Any suggestions? I upgraded from 19 to 20 via browser and now its stuck on "Update in process". I only see this on the logs a bunch of times. Could not open input file: /config/www/nextcloud/cron.php Could not open input file: /config/www/nextcloud/cron.php Could not open input file: /config/www/nextcloud/cron.php Could not open input file: /config/www/nextcloud/cron.php Could not open input file: /config/www/nextcloud/cron.php Could not open input file: /config/www/nextcloud/cron.php
  5. To use all my cpu cores and output pdf file without the PDF/A format, what should I put on the config file? Thanks
  6. https://www.bleepingcomputer.com/news/security/new-nextcry-ransomware-encrypts-data-on-nextcloud-linux-servers/
  7. Anyone using redis with nextcloud is this the correct setup for the docker? Or do I have to specify a path for the cache?
  8. I have setup Nextcloud 16.0.4 using spaceinvaders tutorial. I have everything running the only problem is downloading big files. I have successfully downloaded a 1.7GB but anything bigger it fails after 5 seconds. I have set max body size to 0 within nextcloud and letsencrypt appdata like some tutorials suggest but that only fixed the large file uploads. Any other ideas? TIA Not sure what settings I should post. letsencrypt/nginx nginx.config http { ## # Basic Settings ## sendfile on; tcp_nopush on; tcp_nodelay on; keepalive_timeout 65; types_hash_max_size 2048; # server_tokens off; # server_names_hash_bucket_size 64; # server_name_in_redirect off; client_max_body_size 0; include /etc/nginx/mime.types; default_type application/octet-stream; letsencrypt/nginx proxy.config client_body_buffer_size 128k; #Timeout if the real server is dead proxy_next_upstream error timeout invalid_header http_500 http_502 http_503; # Advanced Proxy Config send_timeout 5m; proxy_read_timeout 240; proxy_send_timeout 240; proxy_connect_timeout 240; # TLS 1.3 early data proxy_set_header Early-Data $ssl_early_data; # Basic Proxy Config proxy_set_header Host $host:$server_port; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto https; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Ssl on; proxy_redirect http:// $scheme://; proxy_http_version 1.1; proxy_set_header Connection ""; #proxy_cookie_path / "/; HTTPOnly; Secure"; # enable at your own risk, may break certain apps proxy_cache_bypass $cookie_session; proxy_no_cache $cookie_session; proxy_buffers 32 4k; proxy_headers_hash_bucket_size 128; proxy_headers_hash_max_size 1024;