TristBella

Members
  • Posts

    20
  • Joined

  • Last visited

Posts posted by TristBella

  1. 13 hours ago, ninthwalker said:

    Sorry for not being around for a  while. Real life catches up sometimes. 
    Unfortunately, I don't have the time required to fix additional issues that may come up with this app currently.
    For the most part, it should be working fine. The Statistics part has always kind of been a bit of an issue, since it interfaces with Tautulli, and I can't update the app anytime the Tautulli dev decides to change something about his that may break NowShowing.

    This app was originally written to be useful before other apps like Tautulli and Ombi integrated their own newsletter/email update systems. But now that they do similar newsletters as this NowShowing app, I don't feel this app is probably needed as much as it once was.

    Anyways, for those that it still works for and use it, great. For anyone new, I might recommend using one of the aforementioned apps that are more regularly maintained. Thanks all!

    Unfortunately, I agree. I have made the switch to the newsletter from Tautulli which works pretty good and will link back to the Plex media. NowShowing was great when it first came around and I used it extensively. But as ninthwalker says, life gets in the way and when that happens, most projects just seem to fade away.

  2. Trying to setup an NGINX reverse proxy. All i get is 404. I have tried changing http_root and http_proxy in the config ini. Both get reverted after a reboot.

     

    location /music {
        include /config/nginx/includes/proxy;
        proxy_pass http://xxx.xxx.xxx.xxx:8181/;
    }

     

    My proxy conf:

     

    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;

    # 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_cache_bypass $cookie_session;
    proxy_no_cache $cookie_session;
    proxy_buffers 32 4k;

  3. Container just starts and stops. I have an ovpn file from AirVPN in the config folder. Just keep getting the below over and over again. It starts, adds the following to the log, then stops.

     

    2019-09-17 20:32:18.190676 [info] VPN_ENABLED defined as 'yes'
    2019-09-17 20:32:18.243328 [info] OpenVPN config file (ovpn extension) is located at /config/openvpn/AirVPN_All-servers_TCP-443.ovpn
    2019-09-17 20:32:18.190676 [info] VPN_ENABLED defined as 'yes'
    2019-09-17 20:32:18.243328 [info] OpenVPN config file (ovpn extension) is located at /config/openvpn/AirVPN_All-servers_TCP-443.ovpn

  4. On 5/12/2019 at 11:48 AM, Stealth1081 said:

    Hi

     

    I have been trying to setup Nextcloud and mariadb following the guide at the start of this forum but always ends with a 504 Gateway Timeout.

    When navigating back to the Nextcloud page it wants to start the setup again.

    The only change i have made to the guide is using the br0 network - Would this make a difference?

    I have tried installing exactly the same way as the guide but still get the same problem.

     

    Fixes for database problem i have found in this forum seem to already included in the latest mariadb custom.cnf

     

    Only log file i can find with an error is the one attached. Is there somewhere else i can look for any hints of why it is failing?

     

    mariadb - MariaDB-1:10.3.14

    Nextcloud - 16.0.0.9 (I think)

    error.log 785 B · 0 downloads

    This is happening to me as well. I can install nextcloud using mariadb on an ubuntu vm with no issues. Installing the docker (using spacedinvader instructions) always gives me a 504 error. It is unusable at this point.

  5. On 5/9/2019 at 10:17 AM, TristBella said:

    I have tried and tried to get this working. I currently have my proxy working with everything except this one. I can get the site to show, but all the CSS styling is gone.

     

    image.thumb.png.6855c8117374d86f5cbbdea0b899d592.png

     

    Forgot to mention that I have solved this issue. I use OrganizrV2. Here is the nginx config.

     

    # Now Showing redirect
        location /nowshowing {
            return 301 /nowshowing/;
        }

    location /nowshowing/ {
            auth_request off;

            #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;

            # Basic Proxy Config
            proxy_set_header X-Real-IP $remote_addr;
            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 $scheme; ## Swapped with line below for parity among others
            proxy_redirect  http://  $scheme://;
            proxy_http_version 1.1;
            proxy_set_header Connection "";
            proxy_cache_bypass $cookie_session;
            proxy_no_cache $cookie_session;
            proxy_buffers 32 4k;
            proxy_headers_hash_max_size 1024;
            proxy_headers_hash_bucket_size 256;
            proxy_pass http://xxx.xxx.xxx.xxx:6878/;
    }

    location /nowshowing/admin/ {
            auth_request off;

            #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;

            # Basic Proxy Config
            proxy_set_header X-Real-IP $remote_addr;
            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 $scheme; ## Swapped with line below for parity among others
            proxy_redirect  http://  $scheme://;
            proxy_http_version 1.1;
            proxy_set_header Connection "";
            proxy_cache_bypass $cookie_session;
            proxy_no_cache $cookie_session;
            proxy_buffers 32 4k;
            proxy_headers_hash_max_size 1024;
            proxy_headers_hash_bucket_size 256;
            proxy_pass http://xxx.xxx.xxx.xxx:6878/admin;
    }

     

  6. My testing of report and email generation are successful. Email is sent and webpage is updated. However, regular use with the cron job set does not generate either.

     

    EDIT:

    This may be the reason.

     

    /usr/local/sbin/webreport:135:in `block in getMovies': undefined method `each' for nil:NilClass (NoMethodError)
    from /usr/local/sbin/webreport:112:in `each'
    from /usr/local/sbin/webreport:112:in `getMovies'
    from /usr/local/sbin/webreport:397:in `main'
    from /usr/local/sbin/webreport:454:in `<main>'

     

    EDIT AGAIN:

    I have removed all traces of the docker and reinstalled. Checked Plex to make sure I have no empty libraries. Used the filtering to filter all but one. No go. I have auto updates on for my dockers (maybe I should turn this off) and the last time I had a successful run was August 21. Email and report were generated. Since then, the above error is generated. I will just turn it off till it is sorted out.

  7. 8 minutes ago, TristBella said:

    I have been looking all over the web on how to add podcasts to Airsonic. Everything talks about deleting and downloading podcasts, but nothing about how to add the podcasts for download. Have I missed something?

    Nevermind. I needed to change the settings for the user to add podcast url.

  8. On 2/12/2018 at 8:12 PM, ninthwalker said:

     

    Here's an example of my nginx proxy for nowshowing:

     

    Server block:

    
    location /nowshowing/ {
             include /etc/nginx/proxy.conf;
             proxy_pass http://192.168.1.18:6878/;
            }

     

    This is my proxy.conf, but I do a lot of other stuff with my nginx, so you may/may not need any of these:

    
    client_body_buffer_size 128k;
    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;
    # 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_redirect http:// $scheme://;
    proxy_http_version 1.1;
    proxy_set_header Connection "";
    proxy_cache_bypass $cookie_session;
    proxy_no_cache $cookie_session;
    proxy_buffers 32 4k;
    proxy_set_header X-Original-URI $request_uri;

     

    I have tried and tried to get this working. I currently have my proxy working with everything except this one. I can get the site to show, but all the CSS styling is gone.

     

    image.thumb.png.6855c8117374d86f5cbbdea0b899d592.png

  9. How do i use an ovpn config file from my VPN provider? I do not use PIA or any other that are listed and will have to use custom. Will I have to use something like this https://ronnieroller.com/unraid#setup-notes_vpn-setup? I have been using a windows machine with the VPN app but would like to move everything over to docker. Thanks.

  10. 10 hours ago, Squid said:

    On a re-read, I also see that you don't have CA installed either.  Which, if you didn't already manually remove them explains the App Tab not being present.  Doesn't explain though why it was present...

     

    Looks like that was the issue. I had used the plugin "Fix Common Problems" which told me about a depreciated plugin that I removed and I guess it removed CA as well. After reading your post, went back to "Fix Common Problems" and it had an error about "Community Applications" not being found with a link to install it. Imagine my surprise when the link took me to a posting by Squid about installing CA. :) I am all good once again. Thanks for the help!

     

  11. 17 hours ago, Squid said:

    The two have nothing to do with each other.  Easiest solution to whatever caused this is to remove /config/plugins/community.applications.plg and the folder /config/plugins/community.applications from the flash drive, reboot then reinstall

     

    Would it surprise you that I have neither of those? Maybe I just need to do a reinstall?

     

    image.png.5143a1272e4c60afbffee4d2256b8b09.png

  12. 12 hours ago, ljm42 said:

     

    There are two plugins that are known to be incompatible with 6.4.1... uninstall Advanced Buttons and Preclear if you have them.  You should also review the update notes here:
      https://lime-technology.com/forums/topic/66327-unraid-os-version-641-stable-release-update-notes/


    Then reboot, and if you are still having problems, upload your diagnostics.

     

    p.s. Since Squid recommended removing and reinstalling Community Applications, I'd do  that too.

     

    I wish I would have found that before, but I was so excited to try an upgrade. I did go from 6.3.5 without any of these steps. Going to try the solution from Squid first and then maybe some of the troubleshooting from the link. Thanks for the help.