richowen

Members
  • Posts

    18
  • Joined

  • Last visited

Posts posted by richowen

  1. Hi, Ive been running a reddit image downloader and come across a small problem with character encoding in the log output, it seems the plugin doesnt support UTF-8/emojis i.e and . so ive had to edit the script to strip these characters from the filenames which is not ideal. Just wanted to let you know incase theres and easy fix thanks.

  2.  

    Quote

    With only a single NIC, and no VLAN support on your network, it is impossible for the host unRAID to talk to the containers and vice versa; the macvlan driver specifically prohibits this. This situation prevents a reverse proxy docker from proxying unRAID, but will work with all other containers on the new docker network.

     

    This is my problem, I NEED to run netdata docker on the host network to be able to fully see host stats, but I need to run my nginx and all other dockers on br0 macvlan, is there ANY way to let nginx proxy/talk to netdata (eth0 to br0)?

     

    This is something I've found online but I get device busy when trying to implement even with everything unplugged.
     

    Quote

    curl: (7) Failed connect to 10.12.0.117:80; No route to host

     

    The host is unable to communicate with macvlan devices via the primary interface. You can create another macvlan interface on the host, give it an address on the appropriate network, and then set up routes to your containers via that interface:

     

    # ip link add em1p1 link em1 type macvlan mode bridge

    # ip addr add 10.12.6.144/21 dev em1p1

    # ip route add 10.12.0.117 dev em1p1

     

    Any ideas?

    • Upvote 1
  3. On 2/15/2017 at 6:24 AM, ken-ji said:

    With only a single NIC, and no VLAN support on your network, it is impossible for the host unRAID to talk to the containers and vice versa; the macvlan driver specifically prohibits this. This situation prevents a reverse proxy docker from proxying unRAID, but will work with all other containers on the new docker network.

     

    This is my problem, I need to run netdata docker on the host network to be able to fully see host stats, but i need to run my nginx and all other dockers on br0 macvlan, is there ANY way to let nginx proxy/talk to netdata (eth0 to br0)?

    This is something I've found online but i get device busy when trying to implement even with everything unplugged.

     

    Quote
    
    curl: (7) Failed connect to 10.12.0.117:80; No route to host
    

    The host is unable to communicate with macvlan devices via the primary interface. You can create another macvlan interface on the host, give it an address on the appropriate network, and then set up routes to your containers via that interface:

    
    # ip link add em1p1 link em1 type macvlan mode bridge
    # ip addr add 10.12.6.144/21 dev em1p1
    # ip route add 10.12.0.117 dev em1p1
    

     

    Any help is appreciated.

  4. I resolved my "DNS rebinding" issue, pretty simple thing really, I run a webserver on unraid and I had changed the default ports for the unraid UI to 88 and 8443 so i could have web traffic going to the web server, all I did was change the Nginx docker to a separate IP and changed the unraid UI back to 80 443 and it worked, pretty obvious really but a note somewhere on the identification page saying you need 443 going to unraid itself would be a nice addition.

  5. Quote

    root@Server:/etc/nginx# /etc/rc.d/rc.nginx reload
    Checking configuration for correct syntax and
    then trying to open files referenced in configuration...
    nginx: [warn] "ssl_stapling" ignored, no OCSP responder URL in the certificate "/etc/ssl/certs/unraid_bundle.pem"
    nginx: [warn] "ssl_stapling" ignored, no OCSP responder URL in the certificate "/etc/ssl/certs/unraid_bundle.pem"
    nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
    nginx: configuration file /etc/nginx/nginx.conf test is successful

     

    I'm getting this on a reload, also im getting the DNS rebinding error for provisioning, dunno if they are related or not.

  6. Was just looking at the Unraid pricing since its been so long since I payed and noticed the price difference between key upgrades, the cost of upgrading is $9 more than a new key for all tiers. e.g. a new pro key is $40 more than a new plus key, but to upgrade from a plus key to a pro key is $49. That seems unfair/weird to me, why is everytrhing $9 more? Seems like you are punishing existing customers. Thanks

    • Upvote 1
  7. Hi, great docker, only issue I've got is that when I try to reverse proxy into it I get the gui but with the errors,

     

    [10.07.2016 20:28:44] WebUI started.

    [10.07.2016 20:28:45] Bad response from server: (502 [error,getplugins]) Bad Gateway

    [10.07.2016 20:28:45] Bad response from server: (405 [error,getuisettings]) <html> <head><title>405 Not Allowed</title></head> <body bgcolor="white"> <center><h1>405 Not Allowed</h1></center> <hr><center>nginx/1.10.1</center> </body> </html>

     

    There are some threads on how to fix it http://forums.rutorrent.org/index.php?topic=4682.0, but not unraid specific. Editing the nearest files I could find in the docker to those didn't help. Any ideas?