Beiträge von lu6fer

    I have the same issue,



    it's due to the browser cache :


    Why use strace on a shell script? sudo sh -x /usr/sbin/cron-aptThere aren't many occurrences of the mailchanges variable. So, it should be pretty easy to figure out what is going wrong.

    Of course, .....


    For the apt-get update (I skip the Translation lines to save chars in post)


    Finally I found what's wrong. I don't know how, but there was a refrain file....
    May be the mkconf could delete this file if exist ?
    Thanks for your time :)

    No update needed, but the apt command works fine.


    The strace show that cron-apt exit after mailchanges directory read.
    On an other debian server, the strace con-apt does a lot of more things ;)

    Hi all,
    Since upgrading to 4.x, I do not have any upgrade notifications, by the way, all other notifications works fine.
    So I look to the cron-apt log file and it's empty since 15 january.
    I try to execute cron-apt by my self with the -s option. Nothing more.


    Have you any tips/solutions for me ?
    Thanks :)

    I had the same error... The problem is the ipv6_enabled function inside helper-functions script file...
    replace line 825 in /usr/share/openmediavault/scripts/helper-funcions for this line:
    [ -e /proc/net/if_inet6 -a $(cat /proc/net/if_inet6 | grep -v lo | wc -l) -gt 0 ] && return 0


    If IPv6 is enabled only in loopback network the the function return that your system is configured only for IPv4...


    This works for me!!!

    For me it's not enought, the mkconf/nginx.d/90-nginx-server must be edited to drop the [ssl_]listen_ipv4

    Hi all,
    I just update to OMV 4.x, and i was facing an issue from nginx website config.


    I have sites defined as name based server all listen to 443 with force https option. This config works for years on OMV 3.x, event 2.x.
    But since the update, nginx won't start with address already in use error. and i firure out that error is because of this configuration.


    It seems that the nginx mkconf use an old config syntax, now deprecated.
    By editing the zzz-omv-nginx and comment the ipv4 listen directive, it works like a charm

    Code
    server {
        #listen :443 ssl;
        listen [::]:443 ssl;
    ....
    }

    Have you experience the same thing ?
    May I make a git issue ?

    I get some similar error from openmedivault_webgui-error.log

    Code
    2014/09/30 08:21:13 [error] 9530#0: *95 open() "/var/www/openmediavault/echo" failed (2: No such file or directory), client: ::ffff:149.255.99.130, server: openmediavault-webgui, request: "GET http://149.255.99.130:
    64011/echo HTTP/1.0"
    2014/09/30 11:09:43 [error] 20154#0: *21 open() "/var/www/openmediavault/echo" failed (2: No such file or directory), client: ::ffff:193.234.224.194, server: openmediavault-webgui, request: "GET http://193.234.224.1
    94:64011/echo HTTP/1.0"
    2014/09/30 11:43:11 [error] 20154#0: *52 open() "/var/www/openmediavault/echo" failed (2: No such file or directory), client: ::ffff:46.36.38.91, server: openmediavault-webgui, request: "GET http://46.36.38.91:64011
    /echo HTTP/1.0

    I don't understand,
    the proxy_params file is present but not include in conf files....
    proxy_params :

    Code
    [13:45:11][root@moorea : nginx]# cat proxy_params
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;


    Code
    [13:44:51][root@moorea : nginx]# grep -r proxy_params ./*
    code 1

    Hi all,
    I've installed the nginx website plugin, for testing purpose, and i saw some weird log.
    It seems the nginx base configuration acting as a transparent proxy.


    Code
    191.238.226.172 - - [30/Sep/2014:10:58:55 +0200] "GET http://www.lavvos.us/community/3.php HTTP/1.1" 200 5064 "-" "-"
    191.238.226.172 - - [30/Sep/2014:10:58:55 +0200] "GET http://www.lavvos.us/community/3.php HTTP/1.1" 200 5064 "-" "-"
    191.238.226.172 - - [30/Sep/2014:10:58:55 +0200] "GET http://www.lavvos.us/community/3.php HTTP/1.1" 200 5070 "-" "-"
    191.238.226.172 - - [30/Sep/2014:10:58:55 +0200] "GET http://www.lavvos.us/community/3.php HTTP/1.1" 200 5070 "-" "-"


    For security, I disable the plugin for now.


    Some older log (lost now because stoping the plugin, delete log), display some proxychercker.ru wich test the proxy connectivity for an URL. And the result is clear :

    • proxy : ok
    • transport :http
    • type : transparent

    The nginx website conf :


    and the php5-fpm :