Jokerigno

Members
  • Posts

    180
  • Joined

  • Last visited

Everything posted by Jokerigno

  1. HI, can someone please help me config nextcloud for net access? (Lan access is working well). I created a subdomain cloud.mydomain.it and changed config.php in nextcloud folder and nextcloud.subdomain.conf in nginx folder under swag container using this config: config.php <?php $CONFIG = array ( 'memcache.local' => '\\OC\\Memcache\\APCu', 'datadirectory' => '/data', 'instanceid' => 'ocz3l2jujtz6', 'passwordsalt' => 'd1GH/7M85KoYp570/2xGEbQpEk4bAe', 'secret' => 'j0ttimHiiELqseRGAGRpXeqZcRdAhILzK+Yf0MVDPef4Aqyq', 'trusted_domains' => array ( 0 => 'xxxxxxxxxxxxxxx:444', 1 => 'cloud.xxxxxxxxxxxxxxx.it', ), 'dbtype' => 'mysql', 'version' => '19.0.3.1', # 'overwrite.cli.url' => 'https://xxxxxxxxxxxxxxx:444', 'dbname' => 'nextcloud', 'dbhost' => 'xxxxxxxxxxxxxxx:3306', 'dbport' => '', 'dbtableprefix' => 'oc_', 'mysql.utf8mb4' => true, 'dbuser' => 'nextcloud', 'dbpassword' => 'xxxxxxxxxxxxxxx', 'installed' => true, 'maintenance' => false, 'loglevel' => 2, 'mail_from_address' => 'admin', 'mail_smtpmode' => 'smtp', 'mail_sendmailmode' => 'smtp', 'mail_domain' => 'xxxxxxxxxxxxxxx.it', 'mail_smtpauthtype' => 'LOGIN', 'mail_smtphost' => 'authsmtp.securemail.pro', 'mail_smtpport' => '465', 'mail_smtpauth' => 1, 'mail_smtpname' => '[email protected]', 'mail_smtppassword' => 'xxxxxxxxxxxxxxx', 'mail_smtpsecure' => 'ssl', 'theme' => '', 'trusted_proxies' => ['swag'], 'overwrite.cli.url' => 'https://cloud.xxxxxxxxxxxxxxx.it/', 'overwritehost' => 'cloud.xxxxxxxxxxxxxxx.it', 'overwriteprotocol' => 'https', ); nextcloud.subdomain.conf # make sure that your dns has a cname set for nextcloud # assuming this container is called "swag", edit your nextcloud container's config # located at /config/www/nextcloud/config/config.php and add the following lines before the ");": # 'trusted_proxies' => ['swag'], # 'overwrite.cli.url' => 'https://nextcloud.your-domain.com/', # 'overwritehost' => 'nextcloud.your-domain.com', # 'overwriteprotocol' => 'https', # # Also don't forget to add your domain name to the trusted domains array. It should look somewhat like this: # array ( # 0 => '192.168.0.1:444', # This line may look different on your setup, don't modify it. # 1 => 'nextcloud.your-domain.com', # ), server { listen 443 ssl; listen [::]:443 ssl; server_name cloud.*; 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_app nextcloud; set $upstream_port 443; set $upstream_proto https; proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_max_temp_file_size 2048m; } } TY in advance!
  2. Followed your suggestions and now it's done!
  3. OK but when I select it and try to run handbrake it says encode error!
  4. Because Unraid don't have a native solution to backup. So I came here to ask what users normally do. I checked UD scripts but It's not so intuitive to me. Here's the script found here: #!/bin/bash PATH=/usr/local/sbin:/usr/sbin:/sbin:/usr/local/bin:/usr/bin:/bin ## Available variables: # AVAIL : available space # USED : used space # SIZE : partition size # SERIAL : disk serial number # ACTION : if mounting, ADD; if unmounting, UNMOUNT; if unmounted, REMOVE; if error, ERROR_MOUNT, ERROR_UNMOUNT # MOUNTPOINT : where the partition is mounted # FSTYPE : partition filesystem # LABEL : partition label # DEVICE : partition device, e.g /dev/sda1 # OWNER : "udev" if executed by UDEV, otherwise "user" # PROG_NAME : program name of this script # LOGFILE : log file for this script case $ACTION in 'ADD' ) # # Beep that the device is plugged in. # beep -l 200 -f 600 -n -l 200 -f 800 sleep 2 if mountpoint -q $MOUNTPOINT; then if [ $OWNER = "udev" ] then beep -l 100 -f 2000 -n -l 150 -f 3000 beep -l 100 -f 2000 -n -l 150 -f 3000 logger Started -t$PROG_NAME echo "Started: `date`" > $LOGFILE logger Pictures share -t$PROG_NAME rsync -a -v /mnt/user/Pictures $MOUNTPOINT/ 2>&1 >> $LOGFILE logger Syncing -t$PROG_NAME sync -f $MOUNTPOINT beep -l 100 -f 2000 -n -l 150 -f 3000 beep -l 100 -f 2000 -n -l 150 -f 3000 beep -r 5 -l 100 -f 2000 logger Unmounting PicturesBackup -t$PROG_NAME /usr/local/sbin/rc.unassigned umount $DEVICE echo "Completed: `date`" >> $LOGFILE logger Pictures Backup drive can be removed -t$PROG_NAME /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Server Backup" -d "Pictures Backup completed" -i "normal" fi else logger Pictures Backup Drive Not Mounted -t$PROG_NAME fi ;; 'REMOVE' ) # # Beep that the device is unmounted. # beep -l 200 -f 800 -n -l 200 -f 600 ;; 'ERROR_MOUNT' ) /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Server Backup" -d "Could not mount Pictures Backup" -i "normal" ;; 'ERROR_UNMOUNT' ) /usr/local/emhttp/webGui/scripts/notify -e "Unraid Server Notice" -s "Server Backup" -d "Could not unmount Pictures Backup" -i "normal" ;; esac What's is not clear is: where I put my specs (my share name, my usb device name etc? Moreover I wish to u backup 2 different folders ("photos", not pictures in my case and "video". Can some one please me point me to the right direction?
  5. That's my opinion too. As a former synology user is quite strange that unraid does not offer a native solution for it. I can use dockers like duplicati but was looking for other examples or best practices.
  6. What do you mean? I'm not an IT guy but as far as I know having a backup (or more than one) is a must as nothing last forever.
  7. Hi all, just a quick question that may be stupid. I've a unraid server with 4drives and a parity. I came from a Synology solution and in that environment there was an app to backup shares on 1 external drive (a USB HDD in my case). I was wondering if I need to do it also in my unraid configuration and in case how to make it. Thanks for all advises
  8. Ciao a tutti, Da qualche mese sono passato da un server Synology ad Unraid. Funziona tutto alla grande ma mi manca una funzionalità che non riesco a replicare: vorrei backuppare in maniera incrementale gli shares con le foto e i video utilizzando un modo più evoluto del copia incolla. Qualcuno ha fatto una cosa simile in passato? Grazie in anticipo!
  9. Same need (almost) I have a parity hdd but I want to backup family photos and videos to an usb HDD. I'm not a programmer so I'm not able to manager command line utilities. Can someone please help me to find the right way to achieve this?
  10. OK got it. And now that I selected this new encoder is will be used by default? I mean with all the auto conversion?
  11. Hi all, I just installed this container to rip my family videos. I alread had QSV in boot/config/go for plex #!/bin/bash # Start the Management Utility /usr/local/sbin/emhttp & #Setup drivers for hardware transcoding in Plex modprobe i915 chmod -R 777 /dev/dri so I just added /dev/dri to my profile I was expecting to see the custom preset but it's not there. I checked the log for error but this is what I got: [cont-init.d] 95-check-qsv.sh: executing... [cont-init.d] 95-check-qsv.sh: Processor: Intel(R) Xeon(R) CPU E3-1225 v3 @ 3.20GHz [cont-init.d] 95-check-qsv.sh: exited 0. I checked on the list and this processo support QSV https://ark.intel.com/content/www/us/en/ark/products/75461/intel-xeon-processor-e3-1225-v3-8m-cache-3-20-ghz.html So can someone please help me to find out why isn't working? Thank you in advance!
  12. Hi @aartr, I switched to your repository for this container but I was wondering if your solution allows to use motion port 7999 to see/start/stop the status of motion detection for every camera. I tried to manually expose port 7999:7999 and ther control in url http://192.168.2.100:7999/1/detection/status but I receive a ERR_CONNECTION_REFUSED error. Thank you for any hint!
  13. Hi I want to test this container but in my template there are not "usb conbee" and "usb device name". Are those variables?
  14. Hi all, I tried to setup Deconz following your post but I receive error in log : I used sudo usermod -a -G dialout $USER to solve USB running command on unraid console and then reboot but nothing changed. Can someone please support me? TY
  15. Ok, maybe I found one docker with issue. This is the container https://hub.docker.com/r/heussd/fivefilters-full-text-rss It allows me to have full rss even if the website don't allow it. I build it using console so I cannot manage via unraid webui and looking at this docker compose here https://github.com/heussd/fivefilters-full-text-rss-docker/blob/master/docker-compose.yml there's I volume I didn't create. So I tried to build another container with same source using unraid templates I mounted the path /var/www/html/cache to the share /mnt/user/appdata/full-text-rss/ like this The webui of the container works but when I try to build a custom rss feed I see this error in the browser That I think is related to that folder. But It is a directory, right? PS: if i remove path the error disappear. Can you please support me again?
  16. Hi all, I want to add shares in my nextcloud . I've tried with smb with no success: Can someone please point me to the right direction?
  17. I was in the container. Below all the steps (from unraid console to container console and then the command) Linux 4.19.107-Unraid. Last login: Thu May 14 17:03:59 +0200 2020 on /dev/pts/0. root@Joshua:~# docker exec -it nextcloud bash root@22bafb464e06:/# sudo -u abc php7 /config/www/nextcloud/occ maintenance:mode --on Could not open input file: /config/www/nextcloud/occ
  18. There's no smarter way to see how many resources every container use?
  19. Hi all, I tried to upgrade to 18.0.4 using webui but the process stopped and now I can only see a message saying "Update in process." So I tried also the manual method suggested but I get stuck at first command: "sudo -u abc php7 /config/www/nextcloud/occ maintenance:mode --on" = "Could not open input file: /config/www/nextcloud/occ"
  20. OK I've checked all the containers and the path seems right. Maybe the one can be this : full-text-rss It is not based on a unraid template and it has not any mapped path. It is based on this : https://github.com/heussd/fivefilters-full-text-rss-docker How can I check if it is the right one?