Everything posted by CorneliousJD
-
[SUPPORT] OpenEats - CorneliousJD Repo
Make sure your allowed_host is set to * because that sounds like it's now allowing your host through, once you get it working that way you can mess with it a little more and change your allowed_host to be something else. It's normal for everything else you mentioned, the spinning on browse, and the lack of any error with the lack of login happening for it to be an allowed host issue. Also appdata remains empty until you start uploading photos for recipies, so that's normal for now! PS, if you load up Adminer or another SQL server manager (or just look via command line) you should see these tables in your openeats database, if you don't see them all then something went wrong with the database.
-
[SUPPORT] OpenEats - CorneliousJD Repo
Yeah unfortunately that wont be in the cards, and I know entering recipes can take a while to move over, lots of copy/paste or typing everything in again.
-
[SUPPORT] OpenEats - CorneliousJD Repo
Reserved.
-
[SUPPORT] OpenEats - CorneliousJD Repo
About OpenEats is a recipe management site that allows users to create, share, and store their personal collection of recipes. The usage for the app is intended for a single user or a small friends/family group. Demo: https://open-eats.github.io/ GitHub: https://github.com/open-eats/OpenEats In my hunt for a self-hosted recipe manager on unRAID, I found a lot of interest in people wanting an OpenEats container, but due to the offical OpenEats containers being split into 3 different containers (nginx, web, and API) it didn't seem like anyone had it successfully running. I took the liberty of trying to get this done for everyone in the community! I found a request for this type of setup (single dockerfile) on GitHub and decided to start diving in to see if I could get this running on unRAID through a reverse proxy, and here we are! I based my template for this container off of this GitHub repo and this Docker Hub repo. Requirements MariaDB (I recommend LinuxServer's container) or compatible MySQL server. Note that there IS a version of this container that comes with MariaDB baked in but it is NOT currently functioning. It is the :mariadb tab, but currently attempting to run it will get you a command failure due to +x permission error. I've reached out to the devs to fix this hopefully! I would recommend the separate MariaDB container anyways, regardsless! Setup MariaDB: You simply need to setup a MariaDB database. I would suggest just calling it "openeats" and you can attach permissions for a user to that database. You should be able to use Adminer (there's a CA docker container already!) if you need a GUI-based way to add databases/users/permissions, etc. Once you have your database, user, and password setup, just put it into the corresponding spots on this docker container's template. Alternatively, you CAN use the SQL root user/password, but I do not recommend that, it's better to have a user with permissions only on this single database. First Run: Please wait while the container creats all the necessary tables in the SQL database. This can take 5-10 minutes or so and the container will have NO log output when it does this. Please be patient, if you interrupt this by stopping the container it will leave you with a broken database! You'll know it's done either when the site is fully working or when you start seeing log output for the container. Users & Groups: After you get everything running, you can login with your sueruser account and you can even create other users who will have access to the site. I would suggest going in and create a group and granting the permissions you want them to have, and then adding users to those groups if you plan on having more than just yourself access this OpenEats instance. Variables OPENEATS_VERSION: This will let you choose a specific version, you can choose "master" here to get the latest version direct from github on each run/restart of the container, or you can choose a speciric version from here as well. If you want to run a specific version just enter the version number for example 1.5.0 ALLOWED_HOST: This will default to * (all), however to be more restrictive you can list your IP address of your unRAID server (allows local LAN access), along with any reverse-proxy domain you want to access from (for access over the Internet), e.g. it may look like this: 192.168.1.10, openats.yourdomain.com DJANGO_SECRET_KEY: This needs to be a long randomly genrated string for cryptography. See here for more information. Other Variables: A list of other OpenEats variables is available here. Reverse Proxy This should work just fine in either an Nginx reverse proxy (like LinuxServer's Let's Encrypt container, or Nginx Proxy Manager). I would recommend setting this us as a subdomain, such as https://openeats.yourdomain.com My current Let's Encrypt reverse proxy server block looks like this. #OPENEATS server { listen 80; server_name openeats.yourdomain.com; return 301 https://openeats.yourdomain.com$request_uri; } server { listen 443 ssl http2; server_name openeats.yourdomain.com; location / { include /config/nginx/proxy.conf; proxy_pass http://192.168.1.10:8760/; } } Known Issues When running behind a reverse proxy, I cannot seem to get the admin page to load. A workaround for now would be to just access it locally to make changes you need, since there shouldn't be too much you regularly have to do there, I don't see this as being a huge issues, but I will try to figure out why this is and work towards a fix. I didn't see this as a reason to delay release of this template/container because it works fine locally still. When creating a recipe it will show a broken image as the placeholder until you upload your own. Saving it without uploading one will still auto-generate a placeholder one after saving. Cosmetic-only issue. Creating a recipe link does not seem to currently work, it just gets stuck at saving the recipe and nonthing ever happens. Thank you /u/ziggie216 on Reddit for reporting this.
-
[Support] Djoss - CrashPlan PRO (aka CrashPlan for Small Business)
Well, thankfully I set a budget on this - backing up less than 50GB of data cost me $18 over 2 days. Cancelled that idea right away. Going to just go with Backblaze B2 I think instead, at least pricing is extremely predictable that way, they don't charge for Class A API calls, where Google, Azure, Aamazon Glacier, etc, all do, which is what kills these ideas for us.
-
[Support] Djoss - CloudBerry Backup
Well this ended up being $20 for 2 days worth of backups... Looks like I'll migrate over to B2. What is everyone's retention policies for B2 and delete policies? My initial thought would be to keep 30 days from modification date, always keep last version, and 3 versions, and delete 30 days after as well so we aren't dealing with too much data retention. Thanks all.
-
[Support] Djoss - CloudBerry Backup
I'm going to try using this to get away from CrashPlan (I have INotify limits and high resource usage with CP Pro daily, and my pricing finally went up to $10/mo a while back) That being said, I'm trying to use it with Google Archival Storage, I think I'd like to also supplement with a local backup disk some day as well so I do not have to rely on Google Cloud for restores unless a disaster strikes. My understanding with Google Archival storage is pricing is only $0.0012/GB/mo, very cheap. But any file that touches the service you automatically pay for storage for a full year on. 365 days. I have my retention policy setup like this, would this be accurate to get the best "bang for my buck" with their storage then since I'm paying for 365 days of storage per file anyways? I also have daily block level backups with monly forced full backups. PS - the /flash mapping to /boot no longer works anymore it seems, the flash folder is empty inside the container. PSS - If Google Archival storage is a waste of time and i should just go for B2 that's fine, I'm just trying to keep costs as low as possible. With my ~800GB of data to backup, this is just less than $1/mo where B2 is $4/mo. Thanks in advance!
-
[Support] Linuxserver.io - Nextcloud
Hi all, looking for some advice to help speed up Nextcloud, if possible. I'm starting to use it more and more for my private cloud needs, but the speed does leave something to be desired. I'm running it via the LetsEncrypt reverse proxy. I don't think there's been any real changes to my nextcloud appdata files other than configuring some auto-deletion of deleted files after 30 days? Here's my reverse proxy config. If there's anything else I can do to help speed it up that would be appreciated. Thanks in advance! server { listen 443 ssl; server_name cloud.domain.com; root /config/www; index index.html index.htm index.php; ###SSL Certificates ssl_certificate /config/keys/letsencrypt/fullchain.pem; ssl_certificate_key /config/keys/letsencrypt/privkey.pem; ###Diffie–Hellman key exchange ### ssl_dhparam /config/nginx/dhparams.pem; ###SSL Ciphers ssl_ciphers '(full cipher list removed here)'; ###Extra Settings### ssl_prefer_server_ciphers on; ssl_session_cache shared:SSL:10m; ### Add HTTP Strict Transport Security ### add_header Strict-Transport-Security "max-age=63072000; includeSubdomains"; add_header Front-End-Https on; add_header Referrer-Policy no-referrer; client_max_body_size 16000m; location / { proxy_pass https://10.0.0.10:444/; # proxy_max_temp_file_size 2048m; #Disabled max temp file size to be able to share files greater than 2GB in size. proxy_buffering off; include /config/nginx/proxy.conf; } }
-
[Support] Linuxserver.io - Deluge
Sorry I fixed this shortly after posting this. For some reason the default webUI password of "deluge" got set again. After using that to login and change it again I'm back up and running. May be a bug in the container so I figured I'd update and alert you guys to it incase it is. Thanks!
-
[Support] Linuxserver.io - Deluge
Hello all, I'm having a new issue that I've noticed today. Sonarr and Radarr can no longer communicate with Deluge any longer, stating my password is incorrect. I cannot access via the web UI either, it says my daemon password is wrong. I've tried opening a local client I have installed on a workstation on my network and THAT can still connect to it, but I cananot edit the daemon password as it fails with "NoneType" object is not subscriptable. Nothing has changed as far as my server goes so I'm not sure what's happening - any advice is appreciated!
-
[Support] binhex - Krusader
Thanks guys! I appreciate it. I guess the appdata share is what I was worried about being hit, but nothing seems to be broken or non-functioning at all so I think we're okay at this point. I'll run docker safe perms and let it ride. Thanks!
-
[Support] binhex - Krusader
So I did a really dumb thing today... I accidentally changed /media in the container to /data (I thought it was wering seeing /media when it was all my user sahres, so I figured i'd make it something more logical). After this it was doing the "Setting permissions recursively on volume mappings..." for about 5-10 minutes before I realized something was off and stopped the container. I then realized in the dockerfile that you map /data... # map /data to host defined config path (used to store data from app) VOLUME /data How bad is this? What kind of damage could it have done? Since it was my /mnt/user/ dirdrectory I assume it would have just been going in alphabetical order, in my appdata first, then my backups, then my emulation folder (with thousands of ROMS). I have backups of everything in the first two folders but I'm not sure what kind of dmage it could ahve done, if any. Any assistance here on what I should check if anything would be appreciated. Thanks in advance!
-
[SUPPORT] Appdaemon & HADashboard - CorneliousJD Repo
Ok, template has been updated, but CA will need to re-scan it to reimport it, it will take a few hours. I've updated the top post here for newcomers to see some much-needed info on how to get this to run. Here's what the template should look like now. Note that the end Dashboard URL is a hidden variable and shown under "More Settings". Most people shouldn't need to change this.
-
[SUPPORT] Appdaemon & HADashboard - CorneliousJD Repo
Ok, I got her up and running again! The auto-generated config does not do enough, and you must manually modify it. Here's my log of it connecting - I'll work to modify the template and add some context to the sample config and re-post in a bit. EDIT: Removed annoying log, see next post/page for final template info.
-
[SUPPORT] Appdaemon & HADashboard - CorneliousJD Repo
Ok sorry this took way longer than I expected to get around to looking at this. I know part of the issue here is just the old api/secret key vs the new LLAT (long lived access token) that's needed, but replacing that still causes the container to crash after starting for some reason. I am strill trying to figure out why but it's not really showing me much and the container doesn't stay running long enough for me to look into it. Will continue to plug away at this as I get time. In the meantime if anyone else has any input let me know - I can easily fix and update the template once I get it working so others can redeploy. 2020-05-07 17:07:29.630378 INFO AppDaemon: AppDaemon Version 4.0.3 starting 2020-05-07 17:07:29.630537 INFO AppDaemon: Python version is 3.8.2 2020-05-07 17:07:29.630632 INFO AppDaemon: Configuration read from: /conf/appdaemon.yaml 2020-05-07 17:07:29.630742 INFO AppDaemon: Added log: AppDaemon 2020-05-07 17:07:29.630878 INFO AppDaemon: Added log: Error 2020-05-07 17:07:29.630988 INFO AppDaemon: Added log: Access 2020-05-07 17:07:29.631109 INFO AppDaemon: Added log: Diag 2020-05-07 17:07:29.631223 ERROR AppDaemon: time_zone not specified in appdaemon.cfg 2020-05-07 17:07:29.631346 ERROR AppDaemon: latitude not specified in appdaemon.cfg 2020-05-07 17:07:29.631444 ERROR AppDaemon: longitude not specified in appdaemon.cfg 2020-05-07 17:07:29.631553 ERROR AppDaemon: elevation not specified in appdaemon.cfg
-
[Support] Djoss - CrashPlan PRO (aka CrashPlan for Small Business)
Oh wow, I only had mine set at 1.5 mil, I've up'd it to 3mil for now. I have 128GB of RAM so plenty to spare, I guess I could just let it go really really high then? I haven't noticed it NOT backing antyhing up though even when it hits the INOTIFY issue?
-
[Support] Djoss - CrashPlan PRO (aka CrashPlan for Small Business)
I *still* have INOTIFY issues constantly but I've increaed the amount so much that I'm afraid to keep taking it higher... Other than that, CrashPlan's container works for me. I don't like their restore interface but I use it so infrequently that I'm okay with it.
-
[Support] Djoss - CrashPlan PRO (aka CrashPlan for Small Business)
What pricing did you get on Google archival storage? I see they list $0.0012 - $0.005 per GB, that's actually a big difference when you're taking thousands of GBs. If I could get my 3TB backed up for $3.6 @ $0.0012/GB instead I may want to move over to CloudBerry (or MSP360 as it's now called I guess). Thanks in advance.
-
[SUPPORT] Appdaemon & HADashboard - CorneliousJD Repo
I admittedly haven't used this container myself in a long while, HADashbord stopped being useful to me with newer, cleaner lovelace elements so I stopped using it. I'll see if I can fire it back up on a new instance and troubleshoot though and see what I come up with. May need to update the container template as well since I think a lot of things have changed since I stopped using it. I'm busy this weekend but will hopefully have some time over the next week to look into it more.
-
[SUPPORT] Stash - CorneliousJD Repo
I don't think that would be possible at this time at least, the app is in its infancy still it seems, lots of work going into it on a regular basis by a small team of people, but I'm not involved with development, just setup the container/template for the community to use. Sorry I can't be of more help on that one!
-
[SUPPORT] Stash - CorneliousJD Repo
Stash is a Go app which organizes and serves your NSFW and adult media content. Github homepage: https://github.com/stashapp/stash I did not create Stash, I simply created the template for unRAID. I honestly saw this as an enhanced tile on Heimdall and wondered what it was, and then I was actually shocked to see a template didn't yet exist so more of as an excercise in setting up containers I fired this up, and now here we are... Report bugs and request new features via Github here: https://github.com/stashapp/stash/issues I can do my best to assist with any Unraid specific issues here via this thread.
-
[Support] Djoss - CrashPlan PRO (aka CrashPlan for Small Business)
CP actually sent out an email a few weeks or a month or so ago stating that this will be a new thing moving forward - so this is normal as of now.
-
[Support] Djoss - CrashPlan PRO (aka CrashPlan for Small Business)
Hey Jim, I think the best thing to do here IMO would be to use the CA Appdata backup/restore to also backup your flash, and then use Crashplan to backup the backed-up file. I have mine setup to backup to /mnt/user/backups/unRAID/flash/ I then keep that whole "backups" folder backed up by CrashPlan so it's always accessible and uploaded whenever the auto-backups get generated.
-
[PLUGIN] Disk Location
Awesome - Just one question, where do I find this feature at? I've tried taking a look and I just don't see it, and I'm sure I'm overlooking something but I figured I'd ask EDIT: Nevermind I found it! Size divider for mini layout - thanks!!!
-
[Support] Djoss - CrashPlan PRO (aka CrashPlan for Small Business)
I had to end up upping mine to 1,500,000 and now it seems to be working properly finally. I am backing up about 850GB give or take, and have 128GB of RAM.