smashingtool

Members
  • Posts

    158
  • Joined

  • Last visited

Everything posted by smashingtool

  1. There's lots of great non superhero comics/graphic novels for adults. Let me know if you want some recommendations or options
  2. Another option is to search for the comics themselves and add them manually. Then it will scan the comics and see that you have them. Obviously this is painful if you have a ton of comics.
  3. I've never used this or NZBMegasearch before, but I'm really glad to have access to it now. Thanks for making it!
  4. Oh, I ran into this (again!) a few weeks ago when I migrated from Phaze's plugin to Pinions docker. Nothing will add until you go into settings, Web Interface tab, and set Comic Location Path to where you keep your comics. I wrote the above before rereading your post, but I would bet that you need to turn the containter off fully and start it back up. Additionally, my file CHMOD is set to 0660. That was the default, i believe. Otherwise, if you were using a different version of it before, as long as you mind your paths in that config.ini file and where you actually place them, you should be able to just move everything over
  5. I had to edit the config.ini to include some info from my previous docker config.ini file, but once I did that, Mylar came back up with my database and all my settings. I haven't grabbed anything yet, but I'm betting that will work fine. The only oddity seems to be the ever present "Could not locate exceptions.csv file. Make sure it is in datadir: /config/mylar" in the logs. I added a blank exceptions.csv to the directory, which causes "Cannot create custom_exceptions.csv in /config/mylar. Make sure _sample.csv is present and/or check permissions." This may just be an issue with Mylar itself, IDK
  6. Hooray! This is exciting! I'm about to go install it.
  7. Is there even a finished or in development version of LL? I would love it if so, but I thought the project was essentially dead
  8. Do you understand docker volume mapping? Yes, but I am coming from a plugin, not a docker, so if I keep my plex config, then it will be working with a different folder structure. I have lots of users on my setup, so I'd like to avoid that.
  9. Is there any sort of guide on how to specifically migrate from Phaze's Plex plugin to this docker? https://lime-technology.com/forum/index.php?topic=41562.0 said this docker is easy to migrate to from plugins, so I know that for permissions, it shouldn't be a problem. My concern is handling the mapping of the media folders and ensuring Plex doesn't wipe my library database during the switch.
  10. Thank you Aptalca! That should help considerably.
  11. Okay, i got this working with OwnCloud, more or less. One thing that bothers me though is that now when i access it from my internal network (192.168.1.130:8000) the CSS doesn't load and it's impossible to log in. IDK if that's working as intended or not. But anyway, at my DDNS address, everything is peachy.
  12. I am having the same issue as Keepitshut. Nginx is working, but css files are not.
  13. So I got to the temporary webpage from outside my network. However, upon trying to set up the server part of the nginx config, that breaks and nothing works. Cany anyone spot what's wrong with my config? This isn't the only thing I've tried, but it's where I stand now: server { listen 443 ssl; server_name xyz.duckdns.org; ### Set Certificates ### ssl_certificate /config/etc/letsencrypt/live/xyz.duckdns.org/fullchain.pem; ssl_certificate_key /config/etc/letsencrypt/live/xyz.duckdns.org/privkey.pem; ### Add Diffie–Hellman key exchange ### ssl_dhparam /config/nginx/dhparams.pem; ### Disable SSL by enforcing TLS ### ssl_protocols TLSv1 TLSv1.1 TLSv1.2; ### Add some ciphers and reject weaker ones ### ssl_ciphers "EECDH+AESGCM:EDH+AESGCM:ECDHE-RSA-AES128-GCM-SHA256:AES256+EECDH:DHE-RSA-AES128-GCM-SHA256:AES256+EDH:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA256:ECDHE-RSA-AES256-SHA:ECDHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES128-SHA256:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-SHA256:AES128-SHA256:AES256-SHA:AES128-SHA:DES-CBC3-SHA:HIGH:!aNULL:!eNULL:!EXPORT:!DES:!MD5:!PSK:!RC4"; 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; preload"; add_header Front-End-Https on; ssl_trusted_certificate /config/etc/letsencrypt/live/xyz.duckdns.org/chain.pem; ### Other Settings ### client_max_body_size 0m; location /owncloud/ { ### Proxy Pass Info ### proxy_pass http://192.168.1.130:8000/; ### Set headers ### proxy_set_header Accept-Encoding ""; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; ### Set timeouts ### proxy_read_timeout 600s; proxy_send_timeout 600s; proxy_connect_timeout 600s; } } Do I need to do something with OwnCloud? I have a VPN set up, so OwnCloud was the only one i was planning to use with the reverse proxy. I might add Plexrequests, but that's low priority. All my other dockers are only for me to access, so VPN works better
  14. Alright, I got the official container up and running. I think I was just too tired last night to approach this correctly. Now to just figure out Redis and the Reverse proxy. I have DuckDNS all set up for other purposes, but the reverse proxy thing is entirely new to me.
  15. Where is the official ownCloud container ? and does that official runs the latest 8.2.2 owncloud? I'm using https://hub.docker.com/_/owncloud/ And yes, it's running the latest 8.2.2. Haven't used in-app update yet, so don't know how persistent it is. I've mapped the whole /var/www/html to /mnt/cache/appdata/owncloud and added a mapping of /data:/mnt/user/ownCloud, pointing the installation wizard to save user files at /data instead of the default location of /var/wwww/html/data (if that makes any sense to you). I've also installed the official Redis container (https://hub.docker.com/_/redis/) for memcache and file locking. The only caveat I still have is cron jobs, but am using www.crondash.com for webcron. Hope that helps S Ok I have it running on the Official Docker for Owncloud. How did you use Redis? can you share screenshot of the Docker GUI page you have for Redis? (edit the docker and show advanced). thanks. How are you getting the official docker installed? I am doing it through Dockerhub, and it seems to install okay, but it never works. The log file is empty and trying to access the webui just leads to a blank page Edit: Argh, I'm giving up for the night. The l3iggs container isn't capable of adding a local 'external storage'. The gfjardim container works great unless you want to be up to date, in which case you end up breaking it. And I can't get the official one working whatsoever. I figured it might be the config.php file, but using the ones from my previous working installs makes no difference to the official docker. I'll take another stab at this tomorrow, but this has easily been the most frustrating docker/plugin experience I have had on unRaid yet. Edit 2: I didn't give up, but im about to. I got it working with the command from spants, but then editing it doesn't seem possible within the gui. So i added it manually, which worked! Except for the icon. Despite giving the icon field http://i.imgur.com/EX4qL2V.png as a source, the icon stays a grey question mark, and is a completely broken link on the dashboard. I don't get it. The docker seems to work, although I have not had a chance to put it through it's paces, and honestly, that icon thing might piss me off too much if i can't fix it. idk
  16. Mylar does not seem capable of updating itself. https://github.com/evilhero/mylar/commits/master shows that I am a few commits behind. When I press "check for new version", the bottom right message says it was successful, yet the logs say "WARNING Could not get the latest commit from github"
  17. Weird, still broken for me. I tried refreshing applications in Community Applications, but it didn't help
  18. I know this is very minor, but is anyone else having certain Binhex dockers not have icon art for them? Even when I actually install them they stay blank. Image attached.
  19. Anyone having trouble with Deluge(Not Delugevpn) since the latest update? I noticed that my new downloads were not moving into seeding, they were becoming paused when they finished downloading and the files were never being moved to the completed folder. Restarting and reinstalling the docker does not help, and in fact, upon coming back up, I have a large number of "Checking Resume Data" torrents, not to mention a bunch of queued ones that should be seeding. And I still can't get the newest ones to transfer from Paused to Seeding. My log file shows: 2015-12-30 21:20:35,898 CRIT Set uid to user 0 2015-12-30 21:20:35,898 WARN Included extra file "/etc/supervisor/conf.d/deluge.conf" during parsing 2015-12-30 21:20:35,903 INFO supervisord started with pid 1 2015-12-30 21:20:36,905 INFO spawned: 'deluged' with pid 10 2015-12-30 21:20:36,906 INFO spawned: 'deluge-web' with pid 11 2015-12-30 21:20:37,638 DEBG 'deluged' stderr output: Unhandled error in Deferred: 2015-12-30 21:20:37,640 DEBG 'deluged' stderr output: Traceback (most recent call last): File "/usr/lib/python2.7/site-packages/deluge/component.py", line 112, in on_start self._component_start_timer() File "/usr/lib/python2.7/site-packages/deluge/component.py", line 106, in _component_start_timer self._component_timer.start(self._component_interval) File "/usr/lib/python2.7/site-packages/twisted/internet/task.py", line 168, in start self() File "/usr/lib/python2.7/site-packages/twisted/internet/task.py", line 213, in __call__ d = defer.maybeDeferred(self.f, *self.a, **self.kw) --- --- File "/usr/lib/python2.7/site-packages/twisted/internet/defer.py", line 150, in maybeDeferred result = f(*args, **kw) File "/usr/lib/python2.7/site-packages/deluge/core/alertmanager.py", line 73, in update self.handle_alerts() File "/usr/lib/python2.7/site-packages/deluge/core/alertmanager.py", line 118, in handle_alerts alert = self.session.pop_alert() exceptions.TypeError: No to_python (by-value) converter found for C++ type: boost::shared_ptr 2015-12-30 21:20:38,643 INFO success: deluged entered RUNNING state, process has stayed up for > than 1 seconds (startsecs) 2015-12-30 21:20:38,644 INFO success: deluge-web entered RUNNING state, process has stayed up for > than 1 seconds (startsecs)
  20. I am looking for some way to create links(or something like that) that allows people i know to easily download files from me. Allowing them to browse my files isn't really what I want, but on a limited sense that would be okay. I guess what I really want is something like Dropbox's link sharing system, but without using Dropbox. Obviously, I want this to be secure. If it opens me up to severe security vulnerabilities, I may just be stuck using Dropbox for this type of thing.
  21. These are about the speed that I get, and after fighting it for a while, I've come to the conclusion that the problem is my Seagate NAS drives being slow.
  22. Is there any sort of roadmap/schedule anymore?
  23. The app does not seem to remember anything i add to the top list, whether I add it manually(and press the save icon) or if i scan and add that way. When i exit and leave, and then return, everything is blank. Is this working as intended? I would expect it to remember the top list.