learnin2walk

Members
  • Posts

    25
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

learnin2walk's Achievements

Noob

Noob (1/14)

1

Reputation

  1. Also trying to install filerun-ofi and getting the error below on the logs. Container won't start. + id -u user + echo 'The user user does not exist, creating...' + groupadd -f -g 1000 user + useradd -u 1000 -g user user + '[' '!' -e /var/www/html/index.php ']' + chown user:user /user-files + echo 'The next step is to download the latest FileRun installation zip from the FileRun client account and upload its contents inside the '\''html'\'' mounted folder.' + echo 'Then change ownership of the files like this:' + echo 'chown -R user:user /var/www/html' + echo 'Then open this server in your browser to complete the FileRun installation.' + exec /usr/bin/supervisord -c /filerun/supervisord.conf Error: The directory named as part of the path /var/www/html/system/data/temp/supervisord.log does not exist For help, use /usr/bin/supervisord -h The user user does not exist, creating... The next step is to download the latest FileRun installation zip from the FileRun client account and upload its contents inside the 'html' mounted folder. Then change ownership of the files like this: chown -R user:user /var/www/html Then open this server in your browser to complete the FileRun installation.
  2. Weird. I can see the folders getting created ("\subscriptions\channels\channelname"), but nothing is downloaded.
  3. @Kilrah Hmm, I had app/video and app/audio under downloader settings (maybe I changed it while playing around with it). But now it works. Have you tried the subscriptions option? I can't get mine to download any videos.
  4. Just added the youtube-dl-material app. I noticed the downloads are not being saved to the share location mapped in the container template. They are saved within the container itself. This is a problem as if many large files are downloaded, the container size will grow too large and cause issues with other apps. Is this a known bug? The unraid share I'm using is set to public
  5. Looks like a great app, but not customized for docker. Everything is saved/stored inside the container file. No option to specify and external storage location/share.
  6. It doesn't seem to read .HEIC files. It works fine with .jpg though.
  7. I did a large upload in filerun, and it's now filling up my docker.img file. The share where it's supposed to dump the files is empty. Is there a cron job that needs to be ran manually to move the files to the unraid share?
  8. You can still expand the group and click on each individual app's menu for logs, etc.
  9. Hi - I'm getting a permission issue when launching the app. The file directory is not writable. /data/files/ The link directory is not writable. /data/links/ The async directory is not writable. /data/async/
  10. Apologies for reviving an old thread, but I'm trying to get this going and I'm getting a "bad healthcheck status" error when trying to connect to my onlyoffice DS. I can get to the server's welcome screen from a web browser, but when I try to connect to it in nextcloud the error below appears. I'm using nginx proxy manager This is the error: Exception: Bad healthcheck status /config/www/nextcloud/apps/onlyoffice/controller/settingscontroller.php - line 172: OCA\Onlyoffice\DocumentService->checkDocServiceUrl() /config/www/nextcloud/lib/private/AppFramework/Http/Dispatcher.php - line 218: OCA\Onlyoffice\Controller\SettingsController->SaveAddress() /config/www/nextcloud/lib/private/AppFramework/Http/Dispatcher.php - line 127: OC\AppFramework\Http\Dispatcher->executeController() /config/www/nextcloud/lib/private/AppFramework/App.php - line 157: OC\AppFramework\Http\Dispatcher->dispatch() /config/www/nextcloud/lib/private/Route/Router.php - line 302: OC\AppFramework\App::main() /config/www/nextcloud/lib/base.php - line 993: OC\Route\Router->match() /config/www/nextcloud/index.php - line 37: OC::handleRequest() What is the URL you guys are using within nextcloud to connect to ONLYOFFICE? I just use my full domain name like documentserver.mydomain.com
  11. I also went with this combo. I'm interested in using the iGPU with a windows 10 VM. Is this possible? Do I need a second/dummy card? @Hoopster any advise on this?
  12. Any idea why a subdomain would start throwing 502 gateway errors after it has been working for months? My ApacheGuacamole docker. I can no longer connect to it from outside my network. Getting 502 error. If I try the internal IP it works fine. No changes in UNRAID or docker configs. It just stopped working. I've restarted both containers. Everything was working correctly. Setup with Letsencrypt and cloudflare. I have 8 other proxyhosts with no issues setup the same way. ApacheGuac is setup with custom:br0 interface with separate IP than unraid server Any ideas would be appreciated.
  13. Yes, I'm using a custom bridge. I've changed the name to all lowercase but it still shows 400 bad request error. I also tried changing the port in the proxy_pass line to match the port mapped in the container (4430) but that gave me a 502 gateway error message. Are there any logs we can look at to see what's going on? edit: I looked at the nginx log and it shows this message: 2020/12/18 07:34:27 [error] 469#469: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.5.1, server: opendoc.*, request: "GET / HTTP/2.0", upstream: "https://172.19.0.2:4430/", host: "opendoc.mydomain.com" 2020/12/18 07:34:27 [error] 469#469: *1 connect() failed (111: Connection refused) while connecting to upstream, client: 192.168.5.1, server: opendoc.*, request: "GET /favicon.ico HTTP/2.0", upstream: "https://172.19.0.2:4430/favicon.ico", host: "opendoc.mydomain.com", referrer: "https://opendoc.mydomain.com/"
  14. Sorry, I ended up figuring it out. Cox blocks incoming port 80, so the http validation would not work. I switched to dns + cloudflare to bypass that. The only problem I have now is with the onlyoffice container not working via the domain. It works fine with the internal unraid_ip:port, but I get a "400 bad request" error if using the domain name. I'm using the proxy conf file from spaceinvader's video, which I'm attaching. Is there something wrong that jumps out? # only office doc server server { listen 443 ssl; server_name opendoc.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; resolver 127.0.0.11 valid=30s; set $upstream_docs OnlyOfficeDocumentServer; proxy_pass https://$upstream_docs:443; proxy_redirect off; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $server_name; proxy_set_header X-Forwarded-Proto $scheme; } }