perusio / drupal-with-nginx

Running Drupal using nginx: an idiosyncratically crafted bleeding edge configuration.
855 stars 246 forks source link

LimeSurvey and Piwik on same server as Drupal #68

Closed Sil68 closed 12 years ago

Sil68 commented 12 years ago

On my server http://my.host.net I'm running a Drupal shop (the document root is set to Drupal).

In parallel I'd like to get LimeSurvey (http://my.host.net/LimeSurvey) and Piwik (http://my.host.net/Piwik) up & running, as it was the case prior migrating from Apache to Nginx.

How would I accomplish this?

I've tried creating a location (Location ^~ /Piwik/ { ... ), included this in the Drupal-specific site configuration, but all I receive is a 'Page not found'.

My 'piwik.conf'

location    ^~      /Piwik/ {
    root                /Volumes/MHData/Web/apps;

    ## See the blacklist.conf file at the parent dir: /etc/nginx.
    ## Deny access based on the User-Agent header.

    ## -> Uncomment the lines below to enable bad bot blocking based
    ## on UA string.
    #if ($bad_bot)  {
    #     return            444;
    #}
    ## -> Uncomment the lines below to enable bad bot blocking based
    ## on referer header.
    ## Deny access based on the Referer header.
    #if ($bad_referer)  {
    #     return            444;
    #}

    ## Disallow any usage of piwik assets if referer is non valid.
    location    ~*      ^/Piwik/.+\.(?:css|gif|jpe?g|js|png|swf)$   {

        ## Defining the valid referers.
        valid_referers  none    blocked *.MMHein.at;
        if ($invalid_referer)   {
            return      444;
        }

        expires         max;

        ## No need to bleed constant updates. Send the all shebang in one
        ## fell swoop.
        tcp_nodelay     off;

        ## Set the OS file cache.
        open_file_cache             max=500 inactive=120s;
        open_file_cache_valid       45s;
        open_file_cache_min_uses    2;
        open_file_cache_errors      off;
    }

    ## Try all locations and relay to index.php as a fallback.
    location        /Piwik/ {
        try_files       $uri    /Piwik/index.php?$query_string;
    }

    ## Relay all index.php requests to fastcgi.
    location    =       /Piwik/index.php    {
        fastcgi_pass    phpcgi;
        ## FastCGI cache.
        ## cache ui for 5m (set the same interval of your crontab)
        include         apps.d/piwik/fcgi_piwik_cache.conf;

        ## To use Apache for serving PHP uncomment the line bellow and
        ## comment out the above.
        #proxy_pass     http://phpapache;

        ### Use the proxy cache if proxying to Apache.
        #include            apps.d/piwik/proxy_piwik_cache.conf;
    }

    ## Relay all piwik.php requests to fastcgi.
    location    =       /Piwik/piwik.php    {
        fastcgi_pass    phpcgi;
        include         apps.d/piwik/fcgi_piwik_long_cache.conf;

        ## To use Apache for serving PHP uncomment the line bellow and
        ## comment out the above.
        #proxy_pass     http://phpapache;

        ## Proxy cache.
        #include            apps.d/piwik/proxy_piwik_long_cache.conf;
    }

    ## Any other attempt to access PHP files redirects to the root.
    location    ~*      ^/Piwik/.+\.php$    {
        return          302     /Piwik;
    }

    ## Redirect to the root if attempting to access a txt file.
    location    ~*      /Piwik/(?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$    {
        return          302     /Piwik;
    }

    ## Disallow access to several helper files.
    location    ~*      /Piwik/\.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$ {
        return          404;
    }

    ## Including the php-fpm status and ping pages config.
    ## Uncomment to enable if you're running php-fpm.
    #include                conf.d/php_fpm_status_vhost.conf;
}

And my site configuration

## define a zone for limiting the number of simultaneous connections accepted
limit_conn_zone             $binary_remote_addr     zone=my.host.net:10m;

##
## HTTP server.
##
server {

    listen                  a.b.c.d:80;                             # IPv4

    server_name             my.host.net;
    limit_conn              my.host.net 32;

    ## Access and error logs.
    access_log              /var/log/nginx/my.host.net-access.log;
    error_log               /var/log/nginx/my.host.net-error.log;

    ## See the blacklist.conf file at the parent dir: /etc/nginx.
    ## Deny access based on the User-Agent header.
    if ($bad_bot)   {
        return              444;
    }
    ## Deny access based on the Referer header.
    if ($bad_referer)   {
        return              444;
    }

    ## Protection against illegal HTTP methods. Out of the box only HEAD,
    ## GET and POST are allowed.
    if ($not_allowed_method)    {
        return              405;
    }

    ## Filesystem root of the site and index.
    root                    /Volumes/MHData/Web/apps/Drupal;
    index                   index.html index.htm index.php index.php3 index.php4 index.php5;

    ## If you're using a Nginx version greater or equal to 1.1.4 then
    ## you can use keep alive connections to the upstream be it
    ## FastCGI or Apache. If that's not the case comment out the line below.
    fastcgi_keep_conn       on;     # keep alive to the FCGI upstream

    ## Uncomment if you're proxying to Apache for handling PHP.
    #proxy_http_version     1.1;    # keep alive to the Apache upstream

    ### Drupal 7-specific settings
    include                 apps.d/drupal/drupal.conf;                  # generic Drupal
    #include                    apps.d/drupal/drupal_boost.conf;            # Drupal using boost
    #include                    apps.d/drupal/drupal_cron_update.conf;      # update.php & external cron w/o drush
    #include                    apps.d/drupal/drupal_install.conf;          # install.php

    ## For upload progress to work. From the README of the
    ## filefield_nginx_progress module.
    location    ~       ^(.*)/x-progress-id:(\w*)   {
        rewrite             ^(.*)/x-progress-id:(\w*)   $1?X-Progress-ID=$2;
        #return             302     $1?X-Progress-ID=$2;
    }

    location    ^~      /progress   {
        report_uploads      uploads;
    }

    ## Including the php-fpm status and ping pages config.
    ## Uncomment to enable if you're running php-fpm.
    include                 conf.d/php_fpm_status_vhost.conf;

    ## Including the Nginx stub status page for having stats about
    ## Nginx activity: http://wiki.nginx.org/HttpStubStatusModule.
    include                 conf.d/nginx_status_vhost.conf;

    ## miscellaneous settings & configurations
    #include                    conf.d/phpinfo.conf;
    include                 apps.d/piwik/piwik.conf;

} # HTTP server
Sil68 commented 12 years ago

:: Would it work when excluding '/LimeSurvey' and '/Piwik' from the '/' definition? How would the location definition then be looking like?

: Or would I have define corresponding locations within the '/' (Drupal) location?

perusio commented 12 years ago

It's better to get a debug log to trace the execution and see what's going on: http://nginx.org/en/docs/debugging_log.html

Sil68 commented 12 years ago

The debug error file look like

2012/10/13 19:43:18 [debug] 57711#0: kevent set event: 41: ft:-1 fl:0005
2012/10/13 19:43:18 [debug] 57713#0: kevent set event: 41: ft:-1 fl:0005
2012/10/13 19:43:18 [debug] 57713#0: kevent deleted: 41: ft:-1
2012/10/13 19:43:18 [debug] 57712#0: kevent set event: 41: ft:-1 fl:0005
2012/10/13 19:43:18 [debug] 57712#0: kevent deleted: 41: ft:-1
2012/10/13 19:43:31 [debug] 57711#0: accept on a.b.c.d:80, ready: 1
2012/10/13 19:43:31 [debug] 57711#0: posix_memalign: 00007FB882C1F920:256 @16
2012/10/13 19:43:31 [debug] 57711#0: *1 accept: a.b.c.d fd:60
2012/10/13 19:43:31 [debug] 57711#0: *1 event timer add: 60: 180000:1350150391078
2012/10/13 19:43:31 [debug] 57711#0: *1 kevent set event: 60: ft:-1 fl:0025
2012/10/13 19:43:31 [debug] 57711#0: *1 malloc: 00007FB883024C00:1312
2012/10/13 19:43:31 [debug] 57711#0: *1 posix_memalign: 00007FB882C1FA20:256 @16
2012/10/13 19:43:31 [debug] 57711#0: *1 malloc: 00007FB883009000:1024
2012/10/13 19:43:31 [debug] 57711#0: *1 posix_memalign: 00007FB883007C00:4096 @16
2012/10/13 19:43:31 [debug] 57711#0: *1 http process request line
2012/10/13 19:43:31 [debug] 57711#0: *1 recv: eof:0, avail:766, err:0
2012/10/13 19:43:31 [debug] 57711#0: *1 recv: fd:60 766 of 1024
2012/10/13 19:43:31 [debug] 57711#0: *1 http request line: "GET /Piwik HTTP/1.1"
2012/10/13 19:43:31 [debug] 57711#0: *1 http uri: "/Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 http args: ""
2012/10/13 19:43:31 [debug] 57711#0: *1 http exten: ""
2012/10/13 19:43:31 [debug] 57711#0: *1 http process request header line
2012/10/13 19:43:31 [debug] 57711#0: *1 http header: "Host: my.host.net"
2012/10/13 19:43:31 [debug] 57711#0: *1 http header: "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/13 19:43:31 [debug] 57711#0: *1 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2012/10/13 19:43:31 [debug] 57711#0: *1 http header: "DNT: 1"
2012/10/13 19:43:31 [debug] 57711#0: *1 http header: "Accept-Language: en-gb"
2012/10/13 19:43:31 [debug] 57711#0: *1 http header: "Accept-Encoding: gzip, deflate"
2012/10/13 19:43:31 [debug] 57711#0: *1 http header: "Cookie: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/13 19:43:31 [debug] 57711#0: *1 http header: "Connection: keep-alive"
2012/10/13 19:43:31 [debug] 57711#0: *1 http header done
2012/10/13 19:43:31 [debug] 57711#0: *1 event timer del: 60: 1350150391078
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 0
2012/10/13 19:43:31 [debug] 57711#0: *1 rewrite phase: 1
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var
2012/10/13 19:43:31 [debug] 57711#0: *1 http map started
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/13 19:43:31 [debug] 57711#0: *1 http map: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14" "0"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "0"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script if
2012/10/13 19:43:31 [debug] 57711#0: *1 http script if: false
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var
2012/10/13 19:43:31 [debug] 57711#0: *1 http geo started: a.b.c.d
2012/10/13 19:43:31 [debug] 57711#0: *1 http geo: 0
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "0"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script if
2012/10/13 19:43:31 [debug] 57711#0: *1 http script if: false
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var
2012/10/13 19:43:31 [debug] 57711#0: *1 http map started
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "GET"
2012/10/13 19:43:31 [debug] 57711#0: *1 http map: "GET" "0"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "0"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script if
2012/10/13 19:43:31 [debug] 57711#0: *1 http script if: false
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "/"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "patches"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "progress"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "ping-2"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "ping-3"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "/sites/default/files/audio/ogg"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "/sites/default/files/advagg_js/"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "/sites/default/files/advagg_css/"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "/help/"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: ~ "/imagecache/"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: ~ "/files/styles/"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: ~ "^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: ~ "^.+\.(?:pdf|pptx?)$"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: ~ "^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: ~ "^.+\.php$"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: ~ "^(.*)/x-progress-id:(\w*)"
2012/10/13 19:43:31 [debug] 57711#0: *1 using configuration "/"
2012/10/13 19:43:31 [debug] 57711#0: *1 http cl:-1 max:10485760
2012/10/13 19:43:31 [debug] 57711#0: *1 rewrite phase: 3
2012/10/13 19:43:31 [debug] 57711#0: *1 rewrite phase: 4
2012/10/13 19:43:31 [debug] 57711#0: *1 post rewrite phase: 5
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 6
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 7
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 8
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 9
2012/10/13 19:43:31 [debug] 57711#0: *1 limit conn: B7CA6CC6 1
2012/10/13 19:43:31 [debug] 57711#0: *1 add cleanup: 00007FB883008AF8
2012/10/13 19:43:31 [debug] 57711#0: *1 access phase: 10
2012/10/13 19:43:31 [debug] 57711#0: *1 access phase: 11
2012/10/13 19:43:31 [debug] 57711#0: *1 post access phase: 12
2012/10/13 19:43:31 [debug] 57711#0: *1 try files phase: 13
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "/Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 trying to use file: "/Piwik" "/Volumes/MHData/Web/apps/Drupal/Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 trying to use file: "@drupal" "/Volumes/MHData/Web/apps/Drupal@drupal"
2012/10/13 19:43:31 [debug] 57711#0: *1 test location: "@drupal"
2012/10/13 19:43:31 [debug] 57711#0: *1 using location: @drupal "/Piwik?"
2012/10/13 19:43:31 [debug] 57711#0: *1 rewrite phase: 3
2012/10/13 19:43:31 [debug] 57711#0: *1 rewrite phase: 4
2012/10/13 19:43:31 [debug] 57711#0: *1 post rewrite phase: 5
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 6
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 7
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 8
2012/10/13 19:43:31 [debug] 57711#0: *1 generic phase: 9
2012/10/13 19:43:31 [debug] 57711#0: *1 access phase: 10
2012/10/13 19:43:31 [debug] 57711#0: *1 access phase: 11
2012/10/13 19:43:31 [debug] 57711#0: *1 post access phase: 12
2012/10/13 19:43:31 [debug] 57711#0: *1 try files phase: 13
2012/10/13 19:43:31 [debug] 57711#0: *1 upload-progress: ngx_http_uploadprogress_content_handler
2012/10/13 19:43:31 [debug] 57711#0: *1 posix_memalign: 00007FB883041000:4096 @16
2012/10/13 19:43:31 [debug] 57711#0: *1 http init upstream, client timer: 0
2012/10/13 19:43:31 [debug] 57711#0: *1 kevent set event: 60: ft:-2 fl:0025
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "my.host.net"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "/Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 http cache key: "my.host.net/Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 http map started
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/13 19:43:31 [debug] 57711#0: *1 http map: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835." "1"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "1"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "QUERY_STRING"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "q="
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "/Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "&"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "QUERY_STRING: q=/Piwik&"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "REQUEST_METHOD"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "GET"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "REQUEST_METHOD: GET"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "CONTENT_TYPE"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "CONTENT_TYPE: "
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "CONTENT_LENGTH"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "CONTENT_LENGTH: "
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "SCRIPT_NAME"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "/index.php"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "SCRIPT_NAME: /index.php"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "REQUEST_URI"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "/Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "REQUEST_URI: /Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "DOCUMENT_URI"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "/Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "DOCUMENT_URI: /Piwik"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "DOCUMENT_ROOT"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "DOCUMENT_ROOT: /Volumes/MHData/Web/apps/Drupal"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "SERVER_PROTOCOL"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "HTTP/1.1"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "GATEWAY_INTERFACE"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "CGI/1.1"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "SERVER_SOFTWARE"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "nginx/"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "1.3.7"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.3.7"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "REMOTE_ADDR"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "a.b.c.d"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "REMOTE_ADDR: a.b.c.d"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "REMOTE_PORT"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "62911"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "REMOTE_PORT: 62911"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "SERVER_ADDR"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "a.b.c.d"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "SERVER_ADDR: a.b.c.d"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "SERVER_PORT"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "80"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "SERVER_PORT: 80"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "SERVER_NAME"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "my.host.net"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "SERVER_NAME: my.host.net"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "REDIRECT_STATUS"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "200"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "REDIRECT_STATUS: 200"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "SCRIPT_FILENAME"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/10/13 19:43:31 [debug] 57711#0: *1 http script copy: "/index.php"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "SCRIPT_FILENAME: /Volumes/MHData/Web/apps/Drupal/index.php"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "HTTP_HOST: my.host.net"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "HTTP_DNT: 1"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-gb"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate"
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "HTTP_COOKIE: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/13 19:43:31 [debug] 57711#0: *1 fastcgi param: "HTTP_CONNECTION: keep-alive"
2012/10/13 19:43:31 [debug] 57711#0: *1 posix_memalign: 00007FB88303F000:4096 @16
2012/10/13 19:43:31 [debug] 57711#0: *1 http cleanup add: 00007FB883041FE0
2012/10/13 19:43:31 [debug] 57711#0: *1 init keepalive peer
2012/10/13 19:43:31 [debug] 57711#0: *1 get keepalive peer
2012/10/13 19:43:31 [debug] 57711#0: *1 get rr peer, try: 1
2012/10/13 19:43:31 [debug] 57711#0: *1 socket 61
2012/10/13 19:43:31 [debug] 57711#0: *1 connect to unix:/var/run/php/php-fpm.sock, fd:61 #2
2012/10/13 19:43:31 [debug] 57711#0: *1 kevent set event: 61: ft:-1 fl:0025
2012/10/13 19:43:31 [debug] 57711#0: *1 connected
2012/10/13 19:43:31 [debug] 57711#0: *1 http upstream connect: 0
2012/10/13 19:43:31 [debug] 57711#0: *1 posix_memalign: 00007FB882C1ACF0:128 @16
2012/10/13 19:43:31 [debug] 57711#0: *1 http upstream send request
2012/10/13 19:43:31 [debug] 57711#0: *1 chain writer buf fl:0 s:1272
2012/10/13 19:43:31 [debug] 57711#0: *1 chain writer in: 00007FB88303F0B8
2012/10/13 19:43:31 [debug] 57711#0: *1 writev: 1272 of 1272
2012/10/13 19:43:31 [debug] 57711#0: *1 chain writer out: 0000000000000000
2012/10/13 19:43:31 [debug] 57711#0: *1 event timer add: 61: 14400000:1350164611082
2012/10/13 19:43:31 [debug] 57711#0: *1 http finalize request: -4, "/Piwik?" a:1, c:3
2012/10/13 19:43:31 [debug] 57711#0: *1 http request count:3 blk:0
2012/10/13 19:43:31 [debug] 57711#0: *1 http finalize request: -4, "/Piwik?" a:1, c:2
2012/10/13 19:43:31 [debug] 57711#0: *1 http request count:2 blk:0
2012/10/13 19:43:31 [debug] 57711#0: *1 http run request: "/Piwik?"
2012/10/13 19:43:31 [debug] 57711#0: *1 http upstream check client, write event:1, "/Piwik"
2012/10/13 19:43:35 [debug] 57711#0: *1 http upstream request: "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 http upstream process header
2012/10/13 19:43:35 [debug] 57711#0: *1 malloc: 00007FB88303D000:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 recv: eof:0, avail:8192, err:0
2012/10/13 19:43:35 [debug] 57711#0: *1 recv: fd:61 4019 of 4019
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 06
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 92
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 06
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record length: 402
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "Status: 404 Not Found"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "Expires: Sun, 19 Nov 1978 05:00:00 GMT"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "Last-Modified: Sat, 13 Oct 2012 17:43:31 +0000"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "ETag: "1350150211""
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "X-XSS-Protection: 1; mode=block"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "X-Content-Type-Options: nosniff"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "X-Frame-Options: SameOrigin"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "Content-Type: text/html; charset=utf-8"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "Content-Language: en"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header: "X-Generator: Drupal 7 (http://drupal.org)"
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi parser: 1
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi header done
2012/10/13 19:43:35 [debug] 57711#0: *1 uploadprogress error-tracker error: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 xslt filter header
2012/10/13 19:43:35 [debug] 57711#0: *1 HTTP/1.1 404 Not Found
Server: nginx
Date: Sat, 13 Oct 2012 17:43:35 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=10
Vary: Accept-Encoding
Expires: Sun, 19 Nov 1978 05:00:00 GMT
Last-Modified: Sat, 13 Oct 2012 17:43:31 +0000
Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SameOrigin
Content-Language: en
Content-Encoding: gzip

2012/10/13 19:43:35 [debug] 57711#0: *1 write new buf t:1 f:0 00007FB88303F798, pos 00007FB88303F798, size: 515 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http write filter: l:0 f:0 s:515
2012/10/13 19:43:35 [debug] 57711#0: *1 http script var: "1"
2012/10/13 19:43:35 [debug] 57711#0: *1 http cacheable: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 http upstream process upstream
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe read upstream: 1
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe preread: 3609
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 06
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 3F
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 78
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:43:35 [debug] 57711#0: *1 http fastcgi record length: 16248
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf #0 00007FB88303D1F5
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf 00007FB88303D1F5 3595
2012/10/13 19:43:35 [debug] 57711#0: *1 malloc: 00007FB88303B000:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 readv: eof:0, avail:4173, err:0
2012/10/13 19:43:35 [debug] 57711#0: *1 readv: 1, last:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe recv chain: 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf #1 00007FB88303B000
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf 00007FB88303B000 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 malloc: 00007FB883039000:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 readv: eof:0, avail:77, err:0
2012/10/13 19:43:35 [debug] 57711#0: *1 readv: 1, last:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe recv chain: 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf #2 00007FB883039000
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf 00007FB883039000 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf in   s:1 t:1 f:0 00007FB88303D000, pos 00007FB88303D1F5, size: 3595 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf in   s:1 t:1 f:0 00007FB88303B000, pos 00007FB88303B000, size: 4096 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf in   s:1 t:1 f:0 00007FB883039000, pos 00007FB883039000, size: 4096 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe length: 4461
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write downstream: 1
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write busy: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write buf ls:1 00007FB88303D1F5 3595
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write buf ls:1 00007FB88303B000 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write buf ls:1 00007FB883039000 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write: out:00007FB88303FB18, f:1
2012/10/13 19:43:35 [debug] 57711#0: *1 http output filter "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 http copy filter: "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 image filter
2012/10/13 19:43:35 [debug] 57711#0: *1 xslt filter body
2012/10/13 19:43:35 [debug] 57711#0: *1 http postpone filter "/Piwik?" 00007FB88303FAB8
2012/10/13 19:43:35 [debug] 57711#0: *1 http gzip filter
2012/10/13 19:43:35 [debug] 57711#0: *1 malloc: 000000010AFDA000:270336
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip alloc: n:1 s:5936 a:8192 p:000000010AFDA000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip alloc: n:32768 s:2 a:65536 p:000000010AFDC000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip alloc: n:32768 s:2 a:65536 p:000000010AFEC000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip alloc: n:32768 s:2 a:65536 p:000000010AFFC000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip alloc: n:16384 s:4 a:65536 p:000000010B00C000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in: 00007FB88303FD30
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FAC8 ni:00007FB88303D1F5 ai:3595
2012/10/13 19:43:35 [debug] 57711#0: *1 malloc: 00007FB883533E00:8192
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate in: ni:00007FB88303D1F5 no:00007FB883533E00 ai:3595 ao:8192 fl:0 redo:0
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate out: ni:00007FB88303E000 no:00007FB883533E00 ai:0 ao:8192 rc:0
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FAC8 pos:00007FB88303D1F5
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in: 00007FB88303FD40
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FB88 ni:00007FB88303B000 ai:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate in: ni:00007FB88303B000 no:00007FB883533E00 ai:4096 ao:8192 fl:0 redo:0
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate out: ni:00007FB88303C000 no:00007FB883533E00 ai:0 ao:8192 rc:0
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FB88 pos:00007FB88303B000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in: 0000000000000000
2012/10/13 19:43:35 [debug] 57711#0: *1 http copy filter: 0 "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write busy: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write buf ls:1 00007FB883039000 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write: out:00007FB88303FC98, f:0
2012/10/13 19:43:35 [debug] 57711#0: *1 http output filter "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 http copy filter: "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 image filter
2012/10/13 19:43:35 [debug] 57711#0: *1 xslt filter body
2012/10/13 19:43:35 [debug] 57711#0: *1 http postpone filter "/Piwik?" 00007FB88303FC98
2012/10/13 19:43:35 [debug] 57711#0: *1 http gzip filter
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in: 00007FB88303FDB0
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FC48 ni:00007FB883039000 ai:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate in: ni:00007FB883039000 no:00007FB883533E00 ai:4096 ao:8192 fl:0 redo:0
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate out: ni:00007FB88303A000 no:00007FB883533E00 ai:0 ao:8192 rc:0
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FC48 pos:00007FB883039000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in: 0000000000000000
2012/10/13 19:43:35 [debug] 57711#0: *1 http copy filter: 0 "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write busy: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write: out:0000000000000000, f:0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe read upstream: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB883039000, pos 00007FB883039000, size: 0 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB88303D000, pos 00007FB88303D000, size: 0 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB88303B000, pos 00007FB88303B000, size: 0 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe length: 4461
2012/10/13 19:43:35 [debug] 57711#0: *1 event timer del: 61: 1350164611082
2012/10/13 19:43:35 [debug] 57711#0: *1 event timer add: 61: 14400000:1350164615940
2012/10/13 19:43:35 [debug] 57711#0: *1 http upstream request: "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 http upstream process upstream
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe read upstream: 1
2012/10/13 19:43:35 [debug] 57711#0: *1 readv: eof:0, avail:4461, err:0
2012/10/13 19:43:35 [debug] 57711#0: *1 readv: 3, last:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe recv chain: 4461
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf #3 00007FB883039000
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf 00007FB883039000 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf in   s:1 t:1 f:0 00007FB883039000, pos 00007FB883039000, size: 4096 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB88303D000, pos 00007FB88303D000, size: 365 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB88303B000, pos 00007FB88303B000, size: 0 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe length: 365
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf #4 00007FB88303D000
2012/10/13 19:43:35 [debug] 57711#0: *1 input buf 00007FB88303D000 365
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write downstream: 1
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write busy: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write buf ls:1 00007FB883039000 4096
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write buf ls:1 00007FB88303D000 365
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write: out:00007FB88303FC98, f:0
2012/10/13 19:43:35 [debug] 57711#0: *1 http output filter "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 http copy filter: "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 image filter
2012/10/13 19:43:35 [debug] 57711#0: *1 xslt filter body
2012/10/13 19:43:35 [debug] 57711#0: *1 http postpone filter "/Piwik?" 00007FB88303FAB8
2012/10/13 19:43:35 [debug] 57711#0: *1 http gzip filter
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in: 00007FB88303FDD0
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FC48 ni:00007FB883039000 ai:4096
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate in: ni:00007FB883039000 no:00007FB883533E00 ai:4096 ao:8192 fl:0 redo:0
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate out: ni:00007FB88303A000 no:00007FB883533E00 ai:0 ao:8192 rc:0
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FC48 pos:00007FB883039000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in: 00007FB88303FDE0
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FB88 ni:00007FB88303D000 ai:365
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate in: ni:00007FB88303D000 no:00007FB883533E00 ai:365 ao:8192 fl:0 redo:0
2012/10/13 19:43:35 [debug] 57711#0: *1 deflate out: ni:00007FB88303D16D no:00007FB883533E00 ai:0 ao:8192 rc:0
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in_buf:00007FB88303FB88 pos:00007FB88303D000
2012/10/13 19:43:35 [debug] 57711#0: *1 gzip in: 0000000000000000
2012/10/13 19:43:35 [debug] 57711#0: *1 http copy filter: 0 "/Piwik?"
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write busy: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe write: out:0000000000000000, f:0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe read upstream: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB883039000, pos 00007FB883039000, size: 0 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB88303D000, pos 00007FB88303D000, size: 0 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB88303B000, pos 00007FB88303B000, size: 0 file: 0, size: 0
2012/10/13 19:43:35 [debug] 57711#0: *1 pipe length: 1
2012/10/13 19:43:35 [debug] 57711#0: *1 event timer: 61, old: 1350164615940, new: 1350164615942
2012/10/13 19:44:02 [debug] 57711#0: *1 http upstream request: "/Piwik?"
2012/10/13 19:44:02 [debug] 57711#0: *1 http upstream process upstream
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe read upstream: 1
2012/10/13 19:44:02 [debug] 57711#0: *1 readv: eof:0, avail:32, err:0
2012/10/13 19:44:02 [debug] 57711#0: *1 readv: 3, last:4096
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe recv chain: 32
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB883039000, pos 00007FB883039000, size: 32 file: 0, size: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB88303D000, pos 00007FB88303D000, size: 0 file: 0, size: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB88303B000, pos 00007FB88303B000, size: 0 file: 0, size: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe length: 1
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 06
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 06
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 02
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record length: 6
2012/10/13 19:44:02 [debug] 57711#0: *1 input buf #5 00007FB883039008
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 03
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 08
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi record length: 8
2012/10/13 19:44:02 [debug] 57711#0: *1 http fastcgi sent end request
2012/10/13 19:44:02 [debug] 57711#0: *1 input buf 00007FB883039008 6
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe write downstream: 1
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe write downstream flush in
2012/10/13 19:44:02 [debug] 57711#0: *1 http output filter "/Piwik?"
2012/10/13 19:44:02 [debug] 57711#0: *1 http copy filter: "/Piwik?"
2012/10/13 19:44:02 [debug] 57711#0: *1 image filter
2012/10/13 19:44:02 [debug] 57711#0: *1 xslt filter body
2012/10/13 19:44:02 [debug] 57711#0: *1 http postpone filter "/Piwik?" 00007FB88303FBD8
2012/10/13 19:44:02 [debug] 57711#0: *1 http gzip filter
2012/10/13 19:44:02 [debug] 57711#0: *1 gzip in: 00007FB88303FAB8
2012/10/13 19:44:02 [debug] 57711#0: *1 gzip in_buf:00007FB88303FB88 ni:00007FB883039008 ai:6
2012/10/13 19:44:02 [debug] 57711#0: *1 deflate in: ni:00007FB883039008 no:00007FB883533E00 ai:6 ao:8192 fl:0 redo:0
2012/10/13 19:44:02 [debug] 57711#0: *1 deflate out: ni:00007FB88303900E no:00007FB883533E00 ai:0 ao:8192 rc:0
2012/10/13 19:44:02 [debug] 57711#0: *1 gzip in_buf:00007FB88303FB88 pos:00007FB883039008
2012/10/13 19:44:02 [debug] 57711#0: *1 gzip in: 0000000000000000
2012/10/13 19:44:02 [debug] 57711#0: *1 http copy filter: 0 "/Piwik?"
2012/10/13 19:44:02 [debug] 57711#0: *1 pipe write downstream done
2012/10/13 19:44:02 [debug] 57711#0: *1 event timer del: 61: 1350164615940
2012/10/13 19:44:02 [debug] 57711#0: *1 event timer add: 61: 14400000:1350164642165
2012/10/13 19:44:02 [debug] 57711#0: *1 http upstream exit: 0000000000000000
2012/10/13 19:44:02 [debug] 57711#0: *1 finalize http upstream request: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 finalize http fastcgi request
2012/10/13 19:44:02 [debug] 57711#0: *1 free keepalive peer
2012/10/13 19:44:02 [debug] 57711#0: *1 free keepalive peer: saving connection 0000000116B7BE40
2012/10/13 19:44:02 [debug] 57711#0: *1 event timer del: 61: 1350164642165
2012/10/13 19:44:02 [debug] 57711#0: *1 free rr peer 1 0
2012/10/13 19:44:02 [debug] 57711#0: *1 http upstream temp fd: -1
2012/10/13 19:44:02 [debug] 57711#0: *1 http output filter "/Piwik?"
2012/10/13 19:44:02 [debug] 57711#0: *1 http copy filter: "/Piwik?"
2012/10/13 19:44:02 [debug] 57711#0: *1 image filter
2012/10/13 19:44:02 [debug] 57711#0: *1 xslt filter body
2012/10/13 19:44:02 [debug] 57711#0: *1 http postpone filter "/Piwik?" 00007FFF554F1450
2012/10/13 19:44:02 [debug] 57711#0: *1 http gzip filter
2012/10/13 19:44:02 [debug] 57711#0: *1 gzip in: 00007FB88303FE40
2012/10/13 19:44:02 [debug] 57711#0: *1 gzip in_buf:00007FB88303FDF0 ni:0000000000000000 ai:0
2012/10/13 19:44:02 [debug] 57711#0: *1 deflate in: ni:0000000000000000 no:00007FB883533E00 ai:0 ao:8192 fl:4 redo:0
2012/10/13 19:44:02 [debug] 57711#0: *1 deflate out: ni:0000000000000000 no:00007FB88353528E ai:0 ao:2930 rc:1
2012/10/13 19:44:02 [debug] 57711#0: *1 gzip in_buf:00007FB88303FDF0 pos:0000000000000000
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 000000010AFDA000
2012/10/13 19:44:02 [debug] 57711#0: *1 http chunk: 10
2012/10/13 19:44:02 [debug] 57711#0: *1 http chunk: 5270
2012/10/13 19:44:02 [debug] 57711#0: *1 write old buf t:1 f:0 00007FB88303F798, pos 00007FB88303F798, size: 515 file: 0, size: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 write new buf t:1 f:0 00007FB88303FF40, pos 00007FB88303FF40, size: 6 file: 0, size: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 write new buf t:0 f:0 0000000000000000, pos 000000010A852988, size: 10 file: 0, size: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 write new buf t:1 f:0 00007FB883533E00, pos 00007FB883533E00, size: 5270 file: 0, size: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 write new buf t:0 f:0 0000000000000000, pos 000000010A8041F7, size: 7 file: 0, size: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 http write filter: l:1 f:1 s:5808
2012/10/13 19:44:02 [debug] 57711#0: *1 http write filter limit 0
2012/10/13 19:44:02 [debug] 57711#0: *1 writev: 5808 of 5808
2012/10/13 19:44:02 [debug] 57711#0: *1 http write filter 0000000000000000
2012/10/13 19:44:02 [debug] 57711#0: *1 http copy filter: 0 "/Piwik?"
2012/10/13 19:44:02 [debug] 57711#0: *1 http finalize request: 0, "/Piwik?" a:1, c:1
2012/10/13 19:44:02 [debug] 57711#0: *1 set http keepalive handler
2012/10/13 19:44:02 [debug] 57711#0: *1 http close request
2012/10/13 19:44:02 [debug] 57711#0: *1 http log handler
2012/10/13 19:44:02 [debug] 57711#0: *1 posix_memalign: 00007FB8832BA800:4096 @16
2012/10/13 19:44:02 [debug] 57711#0: *1 run cleanup: 00007FB883008AF8
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB883533E00
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 0000000000000000
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB883039000
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB88303B000
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB88303D000
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB883007C00, unused: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB883041000, unused: 7
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB88303F000, unused: 8
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB8832BA800, unused: 3827
2012/10/13 19:44:02 [debug] 57711#0: *1 event timer add: 60: 10000:1350150252165
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB883024C00
2012/10/13 19:44:02 [debug] 57711#0: *1 free: 00007FB883009000
2012/10/13 19:44:02 [debug] 57711#0: *1 hc free: 0000000000000000 0
2012/10/13 19:44:02 [debug] 57711#0: *1 hc busy: 0000000000000000 0
2012/10/13 19:44:02 [debug] 57711#0: *1 tcp_nodelay
2012/10/13 19:44:02 [debug] 57711#0: *1 reusable connection: 1
2012/10/13 19:44:02 [debug] 57711#0: *1 http empty handler
2012/10/13 19:44:02 [debug] 57711#0: *1 http keepalive handler
2012/10/13 19:44:02 [debug] 57711#0: *1 malloc: 00007FB883009000:1024
2012/10/13 19:44:02 [debug] 57711#0: *1 recv: eof:0, avail:938, err:0
2012/10/13 19:44:02 [debug] 57711#0: *1 recv: fd:60 938 of 1024
2012/10/13 19:44:02 [debug] 57711#0: *1 reusable connection: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 malloc: 00007FB883024C00:1312
2012/10/13 19:44:02 [debug] 57711#0: *1 posix_memalign: 00007FB88303F000:4096 @16
2012/10/13 19:44:02 [debug] 57711#0: *1 http process request line
2012/10/13 19:44:02 [debug] 57711#0: *1 http request line: "GET /js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7 HTTP/1.1"
2012/10/13 19:44:02 [debug] 57711#0: *1 http uri: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 http args: ""
2012/10/13 19:44:02 [debug] 57711#0: *1 http exten: ""
2012/10/13 19:44:02 [debug] 57711#0: *1 http process request header line
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "Host: my.host.net"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "Accept: text/plain, */*; q=0.01"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "DNT: 1"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "X-Requested-With: XMLHttpRequest"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "If-Modified-Since: Sat, 13 Oct 2012 16:16:32 +0000"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "Referer: http://my.host.net/Piwik"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "If-None-Match: "1350144992-1""
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "Accept-Language: en-gb"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "Accept-Encoding: gzip, deflate"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "Cookie: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/13 19:44:02 [debug] 57711#0: *1 http header: "Connection: keep-alive"
2012/10/13 19:44:02 [debug] 57711#0: *1 http header done
2012/10/13 19:44:02 [debug] 57711#0: *1 event timer del: 60: 1350150252165
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 rewrite phase: 1
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var
2012/10/13 19:44:02 [debug] 57711#0: *1 http map started
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/13 19:44:02 [debug] 57711#0: *1 http map: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14" "0"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "0"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script if
2012/10/13 19:44:02 [debug] 57711#0: *1 http script if: false
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var
2012/10/13 19:44:02 [debug] 57711#0: *1 http geo started: a.b.c.d
2012/10/13 19:44:02 [debug] 57711#0: *1 http geo: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "0"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script if
2012/10/13 19:44:02 [debug] 57711#0: *1 http script if: false
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var
2012/10/13 19:44:02 [debug] 57711#0: *1 http map started
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "GET"
2012/10/13 19:44:02 [debug] 57711#0: *1 http map: "GET" "0"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "0"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script if
2012/10/13 19:44:02 [debug] 57711#0: *1 http script if: false
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "/"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "patches"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "fpm-status"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "fpm-status-3"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "nginx_status"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "/sites/default/files/audio/ogg"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "/sites/default/files/advagg_js/"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "/sites/default/files/advagg_css/"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "/help/"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: ~ "/imagecache/"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: ~ "/files/styles/"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: ~ "^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: ~ "^.+\.(?:pdf|pptx?)$"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: ~ "^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: ~ "^.+\.php$"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: ~ "^(.*)/x-progress-id:(\w*)"
2012/10/13 19:44:02 [debug] 57711#0: *1 using configuration "/"
2012/10/13 19:44:02 [debug] 57711#0: *1 http cl:-1 max:10485760
2012/10/13 19:44:02 [debug] 57711#0: *1 rewrite phase: 3
2012/10/13 19:44:02 [debug] 57711#0: *1 rewrite phase: 4
2012/10/13 19:44:02 [debug] 57711#0: *1 post rewrite phase: 5
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 6
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 7
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 8
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 9
2012/10/13 19:44:02 [debug] 57711#0: *1 limit conn: B7CA6CC6 1
2012/10/13 19:44:02 [debug] 57711#0: *1 add cleanup: 00007FB88303FF30
2012/10/13 19:44:02 [debug] 57711#0: *1 access phase: 10
2012/10/13 19:44:02 [debug] 57711#0: *1 access phase: 11
2012/10/13 19:44:02 [debug] 57711#0: *1 post access phase: 12
2012/10/13 19:44:02 [debug] 57711#0: *1 try files phase: 13
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 trying to use file: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7" "/Volumes/MHData/Web/apps/Drupal/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 trying to use file: "@drupal" "/Volumes/MHData/Web/apps/Drupal@drupal"
2012/10/13 19:44:02 [debug] 57711#0: *1 test location: "@drupal"
2012/10/13 19:44:02 [debug] 57711#0: *1 using location: @drupal "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:02 [debug] 57711#0: *1 rewrite phase: 3
2012/10/13 19:44:02 [debug] 57711#0: *1 rewrite phase: 4
2012/10/13 19:44:02 [debug] 57711#0: *1 post rewrite phase: 5
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 6
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 7
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 8
2012/10/13 19:44:02 [debug] 57711#0: *1 generic phase: 9
2012/10/13 19:44:02 [debug] 57711#0: *1 access phase: 10
2012/10/13 19:44:02 [debug] 57711#0: *1 access phase: 11
2012/10/13 19:44:02 [debug] 57711#0: *1 post access phase: 12
2012/10/13 19:44:02 [debug] 57711#0: *1 try files phase: 13
2012/10/13 19:44:02 [debug] 57711#0: *1 upload-progress: ngx_http_uploadprogress_content_handler
2012/10/13 19:44:02 [debug] 57711#0: *1 posix_memalign: 00007FB883041000:4096 @16
2012/10/13 19:44:02 [debug] 57711#0: *1 http init upstream, client timer: 0
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "my.host.net"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 http cache key: "my.host.net/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 http map started
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/13 19:44:02 [debug] 57711#0: *1 http map: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835." "1"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "1"
2012/10/13 19:44:02 [debug] 57711#0: *1 posix_memalign: 00007FB883007C00:4096 @16
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "QUERY_STRING"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "q="
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "&"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "QUERY_STRING: q=/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7&"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "REQUEST_METHOD"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "GET"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "REQUEST_METHOD: GET"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "CONTENT_TYPE"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "CONTENT_TYPE: "
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "CONTENT_LENGTH"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "CONTENT_LENGTH: "
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "SCRIPT_NAME"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "/index.php"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "SCRIPT_NAME: /index.php"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "REQUEST_URI"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "REQUEST_URI: /js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "DOCUMENT_URI"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "DOCUMENT_URI: /js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "DOCUMENT_ROOT"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "DOCUMENT_ROOT: /Volumes/MHData/Web/apps/Drupal"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "SERVER_PROTOCOL"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "HTTP/1.1"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "GATEWAY_INTERFACE"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "CGI/1.1"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "SERVER_SOFTWARE"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "nginx/"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "1.3.7"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.3.7"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "REMOTE_ADDR"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "a.b.c.d"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "REMOTE_ADDR: a.b.c.d"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "REMOTE_PORT"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "62911"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "REMOTE_PORT: 62911"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "SERVER_ADDR"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "a.b.c.d"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "SERVER_ADDR: a.b.c.d"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "SERVER_PORT"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "80"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "SERVER_PORT: 80"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "SERVER_NAME"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "my.host.net"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "SERVER_NAME: my.host.net"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "REDIRECT_STATUS"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "200"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "REDIRECT_STATUS: 200"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "SCRIPT_FILENAME"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/10/13 19:44:02 [debug] 57711#0: *1 http script copy: "/index.php"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "SCRIPT_FILENAME: /Volumes/MHData/Web/apps/Drupal/index.php"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_HOST: my.host.net"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_ACCEPT: text/plain, */*; q=0.01"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_DNT: 1"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_X_REQUESTED_WITH: XMLHttpRequest"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_REFERER: http://my.host.net/Piwik"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-gb"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate"
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_COOKIE: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/13 19:44:02 [debug] 57711#0: *1 fastcgi param: "HTTP_CONNECTION: keep-alive"
2012/10/13 19:44:02 [debug] 57711#0: *1 http cleanup add: 00007FB883041BD8
2012/10/13 19:44:02 [debug] 57711#0: *1 init keepalive peer
2012/10/13 19:44:02 [debug] 57711#0: *1 get keepalive peer
2012/10/13 19:44:02 [debug] 57711#0: *1 get rr peer, try: 1
2012/10/13 19:44:02 [debug] 57711#0: *1 get keepalive peer: using connection 0000000116B7BE40
2012/10/13 19:44:02 [debug] 57711#0: *1 http upstream connect: -4
2012/10/13 19:44:02 [debug] 57711#0: *1 http upstream send request
2012/10/13 19:44:02 [debug] 57711#0: *1 chain writer buf fl:0 s:1464
2012/10/13 19:44:02 [debug] 57711#0: *1 chain writer in: 00007FB883041C50
2012/10/13 19:44:02 [debug] 57711#0: *1 writev: 1464 of 1464
2012/10/13 19:44:02 [debug] 57711#0: *1 chain writer out: 0000000000000000
2012/10/13 19:44:02 [debug] 57711#0: *1 event timer add: 61: 14400000:1350164642380
2012/10/13 19:44:02 [debug] 57711#0: *1 http finalize request: -4, "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?" a:1, c:3
2012/10/13 19:44:02 [debug] 57711#0: *1 http request count:3 blk:0
2012/10/13 19:44:02 [debug] 57711#0: *1 http finalize request: -4, "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?" a:1, c:2
2012/10/13 19:44:02 [debug] 57711#0: *1 http request count:2 blk:0
2012/10/13 19:44:03 [debug] 57711#0: *1 http upstream request: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:03 [debug] 57711#0: *1 http upstream process header
2012/10/13 19:44:03 [debug] 57711#0: *1 malloc: 00007FB883014600:4096
2012/10/13 19:44:03 [debug] 57711#0: *1 recv: eof:0, avail:8192, err:0
2012/10/13 19:44:03 [debug] 57711#0: *1 recv: fd:61 3972 of 3972
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record byte: 06
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record byte: 01
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record byte: 1F
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record byte: F8
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record byte: 00
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi record length: 8184
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "X-Drupal-Cache: HIT"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Etag: "1350144992-1""
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "X-XSS-Protection: 1; mode=block"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "X-Content-Type-Options: nosniff"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "X-Frame-Options: SameOrigin"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Expires: Sun, 13 Oct 2013 16:16:32 +0000"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Cache-Control: private, max-age=31536000"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Content-Type: text/html; charset=utf-8"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Content-Language: en"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Last-Modified: Sat, 13 Oct 2012 16:16:32 +0000"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Vary: Cookie"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Vary: Accept-Encoding"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header: "Content-Encoding: gzip"
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi parser: 1
2012/10/13 19:44:03 [debug] 57711#0: *1 http fastcgi header done
2012/10/13 19:44:03 [debug] 57711#0: *1 http ims:1350144992 lm:1350144992
2012/10/13 19:44:03 [debug] 57711#0: *1 http im:""1350144992-1"" etag:"1350144992-1"
2012/10/13 19:44:03 [debug] 57711#0: *1 http script var: "BYPASS"
2012/10/13 19:44:03 [debug] 57711#0: *1 uploadprogress error-tracker error: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 xslt filter header
2012/10/13 19:44:03 [debug] 57711#0: *1 HTTP/1.1 304 Not Modified
Server: nginx
Date: Sat, 13 Oct 2012 17:44:03 GMT
Connection: keep-alive
Keep-Alive: timeout=10
Etag: "1350144992-1"
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SameOrigin
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Cache-Control: no-cache
Content-Language: en
Last-Modified: Sat, 13 Oct 2012 16:16:32 +0000
Vary: Cookie
Vary: Accept-Encoding
X-Micro-Cache: BYPASS

2012/10/13 19:44:03 [debug] 57711#0: *1 write new buf t:1 f:0 00007FB8830083F0, pos 00007FB8830083F0, size: 441 file: 0, size: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http write filter: l:1 f:0 s:441
2012/10/13 19:44:03 [debug] 57711#0: *1 http write filter limit 0
2012/10/13 19:44:03 [debug] 57711#0: *1 writev: 441 of 441
2012/10/13 19:44:03 [debug] 57711#0: *1 http write filter 0000000000000000
2012/10/13 19:44:03 [debug] 57711#0: *1 http script var: "1"
2012/10/13 19:44:03 [debug] 57711#0: *1 http cacheable: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http upstream process upstream
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe read upstream: 1
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe preread: 3569
2012/10/13 19:44:03 [debug] 57711#0: *1 input buf #0 00007FB88301480F
2012/10/13 19:44:03 [debug] 57711#0: *1 input buf 00007FB88301480F 3569
2012/10/13 19:44:03 [debug] 57711#0: *1 malloc: 00007FB883015600:4096
2012/10/13 19:44:03 [debug] 57711#0: *1 readv: eof:0, avail:4220, err:0
2012/10/13 19:44:03 [debug] 57711#0: *1 readv: 1, last:4096
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe recv chain: 4096
2012/10/13 19:44:03 [debug] 57711#0: *1 input buf #1 00007FB883015600
2012/10/13 19:44:03 [debug] 57711#0: *1 input buf 00007FB883015600 4096
2012/10/13 19:44:03 [debug] 57711#0: *1 malloc: 00007FB883016600:4096
2012/10/13 19:44:03 [debug] 57711#0: *1 readv: eof:0, avail:124, err:0
2012/10/13 19:44:03 [debug] 57711#0: *1 readv: 1, last:4096
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe recv chain: 124
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe buf in   s:1 t:1 f:0 00007FB883014600, pos 00007FB88301480F, size: 3569 file: 0, size: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe buf in   s:1 t:1 f:0 00007FB883015600, pos 00007FB883015600, size: 4096 file: 0, size: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB883016600, pos 00007FB883016600, size: 124 file: 0, size: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe length: 124
2012/10/13 19:44:03 [debug] 57711#0: *1 input buf #2 00007FB883016600
2012/10/13 19:44:03 [debug] 57711#0: *1 input buf 00007FB883016600 124
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe write downstream: 1
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe write busy: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe write buf ls:1 00007FB88301480F 3569
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe write buf ls:1 00007FB883015600 4096
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe write buf ls:1 00007FB883016600 124
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe write: out:00007FB883008718, f:1
2012/10/13 19:44:03 [debug] 57711#0: *1 http output filter "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:03 [debug] 57711#0: *1 http copy filter: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:03 [debug] 57711#0: *1 image filter
2012/10/13 19:44:03 [debug] 57711#0: *1 xslt filter body
2012/10/13 19:44:03 [debug] 57711#0: *1 http postpone filter "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?" 00007FB8830085C0
2012/10/13 19:44:03 [debug] 57711#0: *1 http copy filter: -1 "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe read upstream: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB883016600, pos 00007FB883016600, size: 0 file: 0, size: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB883015600, pos 00007FB883015600, size: 0 file: 0, size: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe buf free s:0 t:1 f:0 00007FB883014600, pos 00007FB883014600, size: 0 file: 0, size: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 pipe length: 1
2012/10/13 19:44:03 [debug] 57711#0: *1 event timer del: 61: 1350164642380
2012/10/13 19:44:03 [debug] 57711#0: *1 event timer add: 61: 14400000:1350164643158
2012/10/13 19:44:03 [debug] 57711#0: *1 http upstream downstream error
2012/10/13 19:44:03 [debug] 57711#0: *1 finalize http upstream request: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 finalize http fastcgi request
2012/10/13 19:44:03 [debug] 57711#0: *1 free keepalive peer
2012/10/13 19:44:03 [debug] 57711#0: *1 free rr peer 1 0
2012/10/13 19:44:03 [debug] 57711#0: *1 close http upstream connection: 61
2012/10/13 19:44:03 [debug] 57711#0: *1 free: 00007FB882C1ACF0, unused: 48
2012/10/13 19:44:03 [debug] 57711#0: *1 event timer del: 61: 1350164643158
2012/10/13 19:44:03 [debug] 57711#0: *1 reusable connection: 0
2012/10/13 19:44:03 [debug] 57711#0: *1 http upstream temp fd: -1
2012/10/13 19:44:03 [debug] 57711#0: *1 http output filter "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:03 [debug] 57711#0: *1 http copy filter: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:03 [debug] 57711#0: *1 image filter
2012/10/13 19:44:03 [debug] 57711#0: *1 xslt filter body
2012/10/13 19:44:03 [debug] 57711#0: *1 http postpone filter "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?" 00007FFF554F1400
2012/10/13 19:44:03 [debug] 57711#0: *1 http copy filter: -1 "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:03 [debug] 57711#0: *1 http finalize request: -1, "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?" a:1, c:1
2012/10/13 19:44:03 [debug] 57711#0: *1 http terminate request count:1
2012/10/13 19:44:03 [debug] 57711#0: *1 http terminate cleanup count:1 blk:0
2012/10/13 19:44:03 [debug] 57711#0: *1 http posted request: "/js/admin_menu/cache/fd04a39b915b3dfb95d7495f56e15da7?"
2012/10/13 19:44:03 [debug] 57711#0: *1 http terminate handler count:1
2012/10/13 19:44:03 [debug] 57711#0: *1 http request count:1 blk:0
2012/10/13 19:44:03 [debug] 57711#0: *1 http close request
perusio commented 12 years ago

Are you sure the config files for Piwik are included? I don't see any attempt to use the /Piwik/ location. Hence my doubts about being included. Try commenting out the drupal.conf inclusion and see how it goes.

Sil68 commented 12 years ago

Yes, I've double-checked, my 'piwik.conf' is included (actually I've got two, one to included in 'nginx.conf', and one, alternatively, included in 'drupal.conf').

My directory structure:

..../MHData/Web
                    |
                    +--apps
                    |       |
                    |       +-Drupal
                    |       |
                    |       +-LimeSurvey
                    |       |
                    |       +-Piwik
                    |       |
            :
            :

I've just commented out the Drupal settings, set 'root' to '/Volumes/MHData/Web/sites/my.host.net', enabled the debug logging, ('piwik.conf' is included; see contents below)

location        /Piwik  {
    root                /Volumes/MHData/Web/apps;

    ## See the blacklist.conf file at the parent dir: /etc/nginx.
    ## Deny access based on the User-Agent header.

    ## -> Uncomment the lines below to enable bad bot blocking based
    ## on UA string.
    #if ($bad_bot)  {
    #     return            444;
    #}
    ## -> Uncomment the lines below to enable bad bot blocking based
    ## on referer header.
    ## Deny access based on the Referer header.
    #if ($bad_referer)  {
    #     return            444;
    #}

    ## Disallow any usage of piwik assets if referer is non valid.
    location    ~*      ^/Piwik/.+\.(?:css|gif|jpe?g|js|png|swf)$   {

        ## Defining the valid referers.
        valid_referers  none    blocked *.MMHein.at;
        if ($invalid_referer)   {
            return      444;
        }

        expires         max;

        ## No need to bleed constant updates. Send the all shebang in one
        ## fell swoop.
        tcp_nodelay     off;

        ## Set the OS file cache.
        open_file_cache             max=500 inactive=120s;
        open_file_cache_valid       45s;
        open_file_cache_min_uses    2;
        open_file_cache_errors      off;
    }

    ## Try all locations and relay to index.php as a fallback.
    location        /Piwik  {
        try_files       $uri    /Piwik/index.php?$query_string;
    }

    ## Relay all index.php requests to fastcgi.
    location    =       /Piwik/index.php    {
        fastcgi_pass    phpcgi;
        ## FastCGI cache.
        ## cache ui for 5m (set the same interval of your crontab)
        include         apps.d/piwik/fcgi_piwik_cache.conf;

        ## To use Apache for serving PHP uncomment the line bellow and
        ## comment out the above.
        #proxy_pass     http://phpapache;

        ### Use the proxy cache if proxying to Apache.
        #include            apps.d/piwik/proxy_piwik_cache.conf;
    }

    ## Relay all piwik.php requests to fastcgi.
    location    =       /Piwik/piwik.php    {
        fastcgi_pass    phpcgi;
        include         apps.d/piwik/fcgi_piwik_long_cache.conf;

        ## To use Apache for serving PHP uncomment the line bellow and
        ## comment out the above.
        #proxy_pass     http://phpapache;

        ## Proxy cache.
        #include            apps.d/piwik/proxy_piwik_long_cache.conf;
    }

    ## Any other attempt to access PHP files redirects to the root.
    location    ~*      ^/Piwik.+\.php$ {
        return          302     /Piwik;
    }

    ## Redirect to the root if attempting to access a txt file.
    location    ~*      /Piwik/(?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$    {
        return          302     /Piwik;
    }

    ## Disallow access to several helper files.
    location    ~*      /Piwik/\.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$ {
        return          404;
    }

    ## Including the php-fpm status and ping pages config.
    ## Uncomment to enable if you're running php-fpm.
    #include                conf.d/php_fpm_status_vhost.conf;
}

When glimpsing into the error log I'm finding the following lines.

            :
            :
2012/10/15 21:12:59 [debug] 73666#0: *1 content phase: 19
2012/10/15 21:12:59 [debug] 73666#0: *1 content phase: 20
2012/10/15 21:12:59 [debug] 73666#0: *1 http filename: "/Volumes/MHData/Web/sites/my.host.net/Piwik"
2012/10/15 21:12:59 [debug] 73666#0: *1 add cleanup: 00007FC263841088
2012/10/15 21:12:59 [error] 73666#0: *1 open() "/Volumes/MHData/Web/sites/my.host.net/Piwik" failed (2: No such file or directory), client: 192.168.5.100, server: my.host.net, request: "GET /Piwik HTTP/1.1", host: "mh-mac-mini-02.mmhein.at"
2012/10/15 21:12:59 [debug] 73666#0: *1 http finalize request: 404, "/Piwik?" a:1, c:1
2012/10/15 21:12:59 [debug] 73666#0: *1 http special response: 404, "/Piwik?"
            :
            :

Which obviously is incorrect, as piwik is residing in '/Volumes/MHData/Web/apps/Piwik', not '/Volumes/MHData/Web/sites/my.host.net/Piwik'. (Btw. when pointing the root to Drupal, the error log shows '/Volumes/MHData/Web/apps/Drupal/Piwik' instead of '/Volumes/MHData/Web/apps/Piwik').

Somehow this strikes me kind of odd, as I was under the impression when defining a different root in a location, this one then is being used instead the one defined previously outside the location.

Sil68 commented 12 years ago

When following the approach via the 'drupal.conf' file it's to no avail either. :(

drupal.conf:

            :
            :
    ## Replicate the Apache <FilesMatch> directive of Drupal standard
    ## .htaccess. Disable access to any code files. Return a 404 to curtail
    ## information disclosure. Hide also the text files.
    location    ~*      ^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$    {
        return          404;
    }

    ## Direct any non-Drupal-specific to the corresponding locations
    include     apps.d/piwik/piwik_sub.conf;

    ## First we try the URI and relay to the /index.php?q=$uri&$args if not found.
    try_files   $uri    @drupal;
            :
            :

piwik_sub.conf:

location    ^~      /Piwik  {

    #root                   /Volumes/MHData/Web/apps/Piwik;

    ## See the blacklist.conf file at the parent dir: /etc/nginx.
    ## Deny access based on the User-Agent header.

    ## -> Uncomment the lines below to enable bad bot blocking based
    ## on UA string.
    #if ($bad_bot)  {
    #     return            444;
    #}
    ## -> Uncomment the lines below to enable bad bot blocking based
    ## on referer header.
    ## Deny access based on the Referer header.
    #if ($bad_referer)  {
    #     return            444;
    #}

    ## Disallow any usage of piwik assets if referer is non valid.
    location    ~*      ^/Piwik/.+\.(?:css|gif|jpe?g|js|png|swf)$   {

        ## Defining the valid referers.
        valid_referers  none    blocked *.host.net;
        if ($invalid_referer)   {
            return      444;
        }

        expires         max;

        ## No need to bleed constant updates. Send the all shebang in one
        ## fell swoop.
        tcp_nodelay     off;

        ## Set the OS file cache.
        open_file_cache             max=500 inactive=120s;
        open_file_cache_valid       45s;
        open_file_cache_min_uses    2;
        open_file_cache_errors      off;
    }

    ## Relay all index.php requests to fastcgi.
    location    ~*      ^/Piwik/index.php$  {
        fastcgi_pass    phpcgi;
        ## FastCGI cache.
        ## cache ui for 5m (set the same interval of your crontab)
        include         apps.d/piwik/fcgi_piwik_cache.conf;

        ## To use Apache for serving PHP uncomment the line bellow and
        ## comment out the above.
        #proxy_pass     http://phpapache;

        ### Use the proxy cache if proxying to Apache.
        #include            apps.d/piwik/proxy_piwik_cache.conf;
    }

    ## Relay all piwik.php requests to fastcgi.
    location    ~*      ^/Piwik/piwik.php$  {
        fastcgi_pass    phpcgi;
        include         apps.d/piwik/fcgi_piwik_long_cache.conf;

        ## To use Apache for serving PHP uncomment the line bellow and
        ## comment out the above.
        #proxy_pass     http://phpapache;

        ## Proxy cache.
        #include            apps.d/piwik/proxy_piwik_long_cache.conf;
    }

    ## Any other attempt to access PHP files redirects to the root.
    location    ~*      ^/Piwik/.+\.php$    {
        return          302     /Piwik;
    }

    ## Redirect to the root if attempting to access a txt file.
    location    ~*      ^/Piwik/(?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$   {
        return          302     /Piwik;
    }

    ## Disallow access to several helper files.
    location    ~*      ^/Piwik/\.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$    {
        return          404;
    }

    ## Try all locations and relay to index.php as a fallback.
    try_files       $uri    /Piwik/index.php?$query_string;

}

error.log:

2012/10/15 22:04:06 [debug] 74287#0: kevent set event: 41: ft:-1 fl:0005
2012/10/15 22:04:06 [debug] 74287#0: kevent deleted: 41: ft:-1
2012/10/15 22:04:06 [debug] 74285#0: kevent set event: 41: ft:-1 fl:0005
2012/10/15 22:04:06 [debug] 74286#0: kevent set event: 41: ft:-1 fl:0005
2012/10/15 22:04:06 [debug] 74286#0: kevent deleted: 41: ft:-1
2012/10/15 22:04:16 [debug] 74285#0: accept on a.b.c.d:80, ready: 1
2012/10/15 22:04:16 [debug] 74285#0: posix_memalign: 00007F9063C1F910:256 @16
2012/10/15 22:04:16 [debug] 74285#0: *1 accept: a.b.c.d fd:60
2012/10/15 22:04:16 [debug] 74285#0: *1 event timer add: 60: 180000:1350331636589
2012/10/15 22:04:16 [debug] 74285#0: *1 kevent set event: 60: ft:-1 fl:0025
2012/10/15 22:04:16 [debug] 74285#0: *1 malloc: 00007F9064024C00:1312
2012/10/15 22:04:16 [debug] 74285#0: *1 posix_memalign: 00007F9063C1FA10:256 @16
2012/10/15 22:04:16 [debug] 74285#0: *1 malloc: 00007F9064009000:1024
2012/10/15 22:04:16 [debug] 74285#0: *1 posix_memalign: 00007F9064007C00:4096 @16
2012/10/15 22:04:16 [debug] 74285#0: *1 http process request line
2012/10/15 22:04:16 [debug] 74285#0: *1 recv: eof:0, avail:766, err:0
2012/10/15 22:04:16 [debug] 74285#0: *1 recv: fd:60 766 of 1024
2012/10/15 22:04:16 [debug] 74285#0: *1 http request line: "GET /Piwik HTTP/1.1"
2012/10/15 22:04:16 [debug] 74285#0: *1 http uri: "/Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 http args: ""
2012/10/15 22:04:16 [debug] 74285#0: *1 http exten: ""
2012/10/15 22:04:16 [debug] 74285#0: *1 http process request header line
2012/10/15 22:04:16 [debug] 74285#0: *1 http header: "Host: my.host.net"
2012/10/15 22:04:16 [debug] 74285#0: *1 http header: "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/15 22:04:16 [debug] 74285#0: *1 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2012/10/15 22:04:16 [debug] 74285#0: *1 http header: "DNT: 1"
2012/10/15 22:04:16 [debug] 74285#0: *1 http header: "Accept-Language: en-gb"
2012/10/15 22:04:16 [debug] 74285#0: *1 http header: "Accept-Encoding: gzip, deflate"
2012/10/15 22:04:16 [debug] 74285#0: *1 http header: "Cookie: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/15 22:04:16 [debug] 74285#0: *1 http header: "Connection: keep-alive"
2012/10/15 22:04:16 [debug] 74285#0: *1 http header done
2012/10/15 22:04:16 [debug] 74285#0: *1 event timer del: 60: 1350331636589
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 0
2012/10/15 22:04:16 [debug] 74285#0: *1 rewrite phase: 1
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var
2012/10/15 22:04:16 [debug] 74285#0: *1 http map started
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/15 22:04:16 [debug] 74285#0: *1 http map: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14" "0"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "0"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script if
2012/10/15 22:04:16 [debug] 74285#0: *1 http script if: false
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var
2012/10/15 22:04:16 [debug] 74285#0: *1 http geo started: a.b.c.d
2012/10/15 22:04:16 [debug] 74285#0: *1 http geo: 0
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "0"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script if
2012/10/15 22:04:16 [debug] 74285#0: *1 http script if: false
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var
2012/10/15 22:04:16 [debug] 74285#0: *1 http map started
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "GET"
2012/10/15 22:04:16 [debug] 74285#0: *1 http map: "GET" "0"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "0"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script if
2012/10/15 22:04:16 [debug] 74285#0: *1 http script if: false
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "/"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "patches"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "progress"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "ping-2"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "ping-3"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "/sites/default/files/audio/mp3"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "/sites/default/files/advagg_css/"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "/help/"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: ~ "/imagecache/"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: ~ "/files/styles/"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: ~ "^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: ~ "^.+\.(?:pdf|pptx?)$"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: ~ "^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: ~ "^.+\.php$"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: ~ "^(.*)/x-progress-id:(\w*)"
2012/10/15 22:04:16 [debug] 74285#0: *1 using configuration "/"
2012/10/15 22:04:16 [debug] 74285#0: *1 http cl:-1 max:10485760
2012/10/15 22:04:16 [debug] 74285#0: *1 rewrite phase: 3
2012/10/15 22:04:16 [debug] 74285#0: *1 rewrite phase: 4
2012/10/15 22:04:16 [debug] 74285#0: *1 post rewrite phase: 5
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 6
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 7
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 8
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 9
2012/10/15 22:04:16 [debug] 74285#0: *1 limit conn: B7CA6CC6 1
2012/10/15 22:04:16 [debug] 74285#0: *1 add cleanup: 00007F9064008AF8
2012/10/15 22:04:16 [debug] 74285#0: *1 access phase: 10
2012/10/15 22:04:16 [debug] 74285#0: *1 access phase: 11
2012/10/15 22:04:16 [debug] 74285#0: *1 post access phase: 12
2012/10/15 22:04:16 [debug] 74285#0: *1 try files phase: 13
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "/Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 trying to use file: "/Piwik" "/Volumes/MHData/Web/apps/Drupal/Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 trying to use file: "@drupal" "/Volumes/MHData/Web/apps/Drupal@drupal"
2012/10/15 22:04:16 [debug] 74285#0: *1 test location: "@drupal"
2012/10/15 22:04:16 [debug] 74285#0: *1 using location: @drupal "/Piwik?"
2012/10/15 22:04:16 [debug] 74285#0: *1 rewrite phase: 3
2012/10/15 22:04:16 [debug] 74285#0: *1 rewrite phase: 4
2012/10/15 22:04:16 [debug] 74285#0: *1 post rewrite phase: 5
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 6
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 7
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 8
2012/10/15 22:04:16 [debug] 74285#0: *1 generic phase: 9
2012/10/15 22:04:16 [debug] 74285#0: *1 access phase: 10
2012/10/15 22:04:16 [debug] 74285#0: *1 access phase: 11
2012/10/15 22:04:16 [debug] 74285#0: *1 post access phase: 12
2012/10/15 22:04:16 [debug] 74285#0: *1 try files phase: 13
2012/10/15 22:04:16 [debug] 74285#0: *1 upload-progress: ngx_http_uploadprogress_content_handler
2012/10/15 22:04:16 [debug] 74285#0: *1 posix_memalign: 00007F9064041000:4096 @16
2012/10/15 22:04:16 [debug] 74285#0: *1 http init upstream, client timer: 0
2012/10/15 22:04:16 [debug] 74285#0: *1 kevent set event: 60: ft:-2 fl:0025
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "my.host.net"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "/Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 http cache key: "my.host.net/Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 http map started
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/15 22:04:16 [debug] 74285#0: *1 http map: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835." "1"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "1"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "QUERY_STRING"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "q="
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "/Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "&"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "QUERY_STRING: q=/Piwik&"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "REQUEST_METHOD"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "GET"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "REQUEST_METHOD: GET"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "CONTENT_TYPE"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "CONTENT_TYPE: "
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "CONTENT_LENGTH"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "CONTENT_LENGTH: "
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "SCRIPT_NAME"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "/index.php"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "SCRIPT_NAME: /index.php"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "REQUEST_URI"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "/Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "REQUEST_URI: /Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "DOCUMENT_URI"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "/Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "DOCUMENT_URI: /Piwik"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "DOCUMENT_ROOT"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "DOCUMENT_ROOT: /Volumes/MHData/Web/apps/Drupal"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "SERVER_PROTOCOL"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "HTTP/1.1"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "GATEWAY_INTERFACE"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "CGI/1.1"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "SERVER_SOFTWARE"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "nginx/"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "1.3.7"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.3.7"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "REMOTE_ADDR"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "a.b.c.d"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "REMOTE_ADDR: a.b.c.d"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "REMOTE_PORT"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "56487"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "REMOTE_PORT: 56487"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "SERVER_ADDR"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "a.b.c.d"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "SERVER_ADDR: a.b.c.d"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "SERVER_PORT"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "80"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "SERVER_PORT: 80"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "SERVER_NAME"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "my.host.net"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "SERVER_NAME: my.host.net"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "REDIRECT_STATUS"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "200"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "REDIRECT_STATUS: 200"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "SCRIPT_FILENAME"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/10/15 22:04:16 [debug] 74285#0: *1 http script copy: "/index.php"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "SCRIPT_FILENAME: /Volumes/MHData/Web/apps/Drupal/index.php"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "HTTP_HOST: my.host.net"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "HTTP_DNT: 1"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-gb"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate"
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "HTTP_COOKIE: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/15 22:04:16 [debug] 74285#0: *1 fastcgi param: "HTTP_CONNECTION: keep-alive"
2012/10/15 22:04:16 [debug] 74285#0: *1 posix_memalign: 00007F906403F000:4096 @16
2012/10/15 22:04:16 [debug] 74285#0: *1 http cleanup add: 00007F9064041FE0
2012/10/15 22:04:16 [debug] 74285#0: *1 init keepalive peer
2012/10/15 22:04:16 [debug] 74285#0: *1 get keepalive peer
2012/10/15 22:04:16 [debug] 74285#0: *1 get rr peer, try: 1
2012/10/15 22:04:16 [debug] 74285#0: *1 socket 61
2012/10/15 22:04:16 [debug] 74285#0: *1 connect to unix:/var/run/php/php-fpm.sock, fd:61 #2
2012/10/15 22:04:16 [debug] 74285#0: *1 kevent set event: 61: ft:-1 fl:0025
2012/10/15 22:04:16 [debug] 74285#0: *1 connected
2012/10/15 22:04:16 [debug] 74285#0: *1 http upstream connect: 0
2012/10/15 22:04:16 [debug] 74285#0: *1 posix_memalign: 00007F9063C1ACE0:128 @16
2012/10/15 22:04:16 [debug] 74285#0: *1 http upstream send request
2012/10/15 22:04:16 [debug] 74285#0: *1 chain writer buf fl:0 s:1272
2012/10/15 22:04:16 [debug] 74285#0: *1 chain writer in: 00007F906403F0B8
2012/10/15 22:04:16 [debug] 74285#0: *1 writev: 1272 of 1272
2012/10/15 22:04:16 [debug] 74285#0: *1 chain writer out: 0000000000000000
2012/10/15 22:04:16 [debug] 74285#0: *1 event timer add: 61: 14400000:1350345856592
2012/10/15 22:04:16 [debug] 74285#0: *1 http finalize request: -4, "/Piwik?" a:1, c:3
2012/10/15 22:04:16 [debug] 74285#0: *1 http request count:3 blk:0
2012/10/15 22:04:16 [debug] 74285#0: *1 http finalize request: -4, "/Piwik?" a:1, c:2
2012/10/15 22:04:16 [debug] 74285#0: *1 http request count:2 blk:0
2012/10/15 22:04:16 [debug] 74285#0: *1 http run request: "/Piwik?"
2012/10/15 22:04:16 [debug] 74285#0: *1 http upstream check client, write event:1, "/Piwik"
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream request: "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream process header
2012/10/15 22:04:17 [debug] 74285#0: *1 malloc: 00007F906403D000:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 recv: eof:0, avail:8192, err:0
2012/10/15 22:04:17 [debug] 74285#0: *1 recv: fd:61 4019 of 4019
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 06
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 92
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 06
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record length: 402
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "Status: 404 Not Found"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "Expires: Sun, 19 Nov 1978 05:00:00 GMT"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "Last-Modified: Mon, 15 Oct 2012 20:04:16 +0000"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "ETag: "1350331456""
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "X-XSS-Protection: 1; mode=block"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "X-Content-Type-Options: nosniff"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "X-Frame-Options: SameOrigin"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "Content-Type: text/html; charset=utf-8"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "Content-Language: en"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header: "X-Generator: Drupal 7 (http://drupal.org)"
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi parser: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi header done
2012/10/15 22:04:17 [debug] 74285#0: *1 uploadprogress error-tracker error: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 xslt filter header
2012/10/15 22:04:17 [debug] 74285#0: *1 HTTP/1.1 404 Not Found
Server: nginx
Date: Mon, 15 Oct 2012 20:04:17 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=10
Vary: Accept-Encoding
Expires: Sun, 19 Nov 1978 05:00:00 GMT
Last-Modified: Mon, 15 Oct 2012 20:04:16 +0000
Cache-Control: no-cache, must-revalidate, post-check=0, pre-check=0
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SameOrigin
Content-Language: en
Content-Encoding: gzip

2012/10/15 22:04:17 [debug] 74285#0: *1 write new buf t:1 f:0 00007F906403F798, pos 00007F906403F798, size: 515 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http write filter: l:0 f:0 s:515
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "1"
2012/10/15 22:04:17 [debug] 74285#0: *1 http cacheable: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream process upstream
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe read upstream: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe preread: 3609
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 06
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 3F
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 78
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record length: 16248
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf #0 00007F906403D1F5
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf 00007F906403D1F5 3595
2012/10/15 22:04:17 [debug] 74285#0: *1 malloc: 00007F906403B000:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 readv: eof:0, avail:4173, err:0
2012/10/15 22:04:17 [debug] 74285#0: *1 readv: 1, last:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe recv chain: 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf #1 00007F906403B000
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf 00007F906403B000 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 malloc: 00007F9064039000:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 readv: eof:0, avail:77, err:0
2012/10/15 22:04:17 [debug] 74285#0: *1 readv: 1, last:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe recv chain: 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf #2 00007F9064039000
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf 00007F9064039000 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf in   s:1 t:1 f:0 00007F906403D000, pos 00007F906403D1F5, size: 3595 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf in   s:1 t:1 f:0 00007F906403B000, pos 00007F906403B000, size: 4096 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf in   s:1 t:1 f:0 00007F9064039000, pos 00007F9064039000, size: 4096 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe length: 4461
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write downstream: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write busy: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write buf ls:1 00007F906403D1F5 3595
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write buf ls:1 00007F906403B000 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write buf ls:1 00007F9064039000 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write: out:00007F906403FB18, f:1
2012/10/15 22:04:17 [debug] 74285#0: *1 http output filter "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 image filter
2012/10/15 22:04:17 [debug] 74285#0: *1 xslt filter body
2012/10/15 22:04:17 [debug] 74285#0: *1 http postpone filter "/Piwik?" 00007F906403FAB8
2012/10/15 22:04:17 [debug] 74285#0: *1 http gzip filter
2012/10/15 22:04:17 [debug] 74285#0: *1 malloc: 000000010B07C000:270336
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip alloc: n:1 s:5936 a:8192 p:000000010B07C000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip alloc: n:32768 s:2 a:65536 p:000000010B07E000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip alloc: n:32768 s:2 a:65536 p:000000010B08E000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip alloc: n:32768 s:2 a:65536 p:000000010B09E000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip alloc: n:16384 s:4 a:65536 p:000000010B0AE000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 00007F906403FD30
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FAC8 ni:00007F906403D1F5 ai:3595
2012/10/15 22:04:17 [debug] 74285#0: *1 malloc: 00007F9064603C00:8192
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate in: ni:00007F906403D1F5 no:00007F9064603C00 ai:3595 ao:8192 fl:0 redo:0
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate out: ni:00007F906403E000 no:00007F9064603C00 ai:0 ao:8192 rc:0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FAC8 pos:00007F906403D1F5
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 00007F906403FD40
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FB88 ni:00007F906403B000 ai:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate in: ni:00007F906403B000 no:00007F9064603C00 ai:4096 ao:8192 fl:0 redo:0
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate out: ni:00007F906403C000 no:00007F9064603C00 ai:0 ao:8192 rc:0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FB88 pos:00007F906403B000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: 0 "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write busy: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write buf ls:1 00007F9064039000 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write: out:00007F906403FC98, f:0
2012/10/15 22:04:17 [debug] 74285#0: *1 http output filter "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 image filter
2012/10/15 22:04:17 [debug] 74285#0: *1 xslt filter body
2012/10/15 22:04:17 [debug] 74285#0: *1 http postpone filter "/Piwik?" 00007F906403FC98
2012/10/15 22:04:17 [debug] 74285#0: *1 http gzip filter
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 00007F906403FDB0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FC48 ni:00007F9064039000 ai:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate in: ni:00007F9064039000 no:00007F9064603C00 ai:4096 ao:8192 fl:0 redo:0
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate out: ni:00007F906403A000 no:00007F9064603C00 ai:0 ao:8192 rc:0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FC48 pos:00007F9064039000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: 0 "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write busy: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write: out:0000000000000000, f:0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe read upstream: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F9064039000, pos 00007F9064039000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403D000, pos 00007F906403D000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403B000, pos 00007F906403B000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe length: 4461
2012/10/15 22:04:17 [debug] 74285#0: *1 event timer del: 61: 1350345856592
2012/10/15 22:04:17 [debug] 74285#0: *1 event timer add: 61: 14400000:1350345857454
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream request: "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream process upstream
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe read upstream: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 readv: eof:0, avail:4461, err:0
2012/10/15 22:04:17 [debug] 74285#0: *1 readv: 3, last:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe recv chain: 4461
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf #3 00007F9064039000
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf 00007F9064039000 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf in   s:1 t:1 f:0 00007F9064039000, pos 00007F9064039000, size: 4096 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403D000, pos 00007F906403D000, size: 365 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403B000, pos 00007F906403B000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe length: 365
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf #4 00007F906403D000
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf 00007F906403D000 365
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write downstream: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write busy: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write buf ls:1 00007F9064039000 4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write buf ls:1 00007F906403D000 365
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write: out:00007F906403FC98, f:0
2012/10/15 22:04:17 [debug] 74285#0: *1 http output filter "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 image filter
2012/10/15 22:04:17 [debug] 74285#0: *1 xslt filter body
2012/10/15 22:04:17 [debug] 74285#0: *1 http postpone filter "/Piwik?" 00007F906403FAB8
2012/10/15 22:04:17 [debug] 74285#0: *1 http gzip filter
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 00007F906403FDD0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FC48 ni:00007F9064039000 ai:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate in: ni:00007F9064039000 no:00007F9064603C00 ai:4096 ao:8192 fl:0 redo:0
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate out: ni:00007F906403A000 no:00007F9064603C00 ai:0 ao:8192 rc:0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FC48 pos:00007F9064039000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 00007F906403FDE0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FB88 ni:00007F906403D000 ai:365
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate in: ni:00007F906403D000 no:00007F9064603C00 ai:365 ao:8192 fl:0 redo:0
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate out: ni:00007F906403D16D no:00007F9064603C00 ai:0 ao:8192 rc:0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FB88 pos:00007F906403D000
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: 0 "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write busy: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write: out:0000000000000000, f:0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe read upstream: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F9064039000, pos 00007F9064039000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403D000, pos 00007F906403D000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403B000, pos 00007F906403B000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe length: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 event timer: 61, old: 1350345857454, new: 1350345857455
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream request: "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream process upstream
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe read upstream: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 readv: eof:0, avail:32, err:0
2012/10/15 22:04:17 [debug] 74285#0: *1 readv: 3, last:4096
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe recv chain: 32
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F9064039000, pos 00007F9064039000, size: 32 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403D000, pos 00007F906403D000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403B000, pos 00007F906403B000, size: 0 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe length: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 06
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 06
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 02
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record length: 6
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf #5 00007F9064039008
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 03
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 08
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi record length: 8
2012/10/15 22:04:17 [debug] 74285#0: *1 http fastcgi sent end request
2012/10/15 22:04:17 [debug] 74285#0: *1 input buf 00007F9064039008 6
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write downstream: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write downstream flush in
2012/10/15 22:04:17 [debug] 74285#0: *1 http output filter "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 image filter
2012/10/15 22:04:17 [debug] 74285#0: *1 xslt filter body
2012/10/15 22:04:17 [debug] 74285#0: *1 http postpone filter "/Piwik?" 00007F906403FBD8
2012/10/15 22:04:17 [debug] 74285#0: *1 http gzip filter
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 00007F906403FAB8
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FB88 ni:00007F9064039008 ai:6
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate in: ni:00007F9064039008 no:00007F9064603C00 ai:6 ao:8192 fl:0 redo:0
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate out: ni:00007F906403900E no:00007F9064603C00 ai:0 ao:8192 rc:0
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FB88 pos:00007F9064039008
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: 0 "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 pipe write downstream done
2012/10/15 22:04:17 [debug] 74285#0: *1 event timer: 61, old: 1350345857454, new: 1350345857510
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream exit: 0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 finalize http upstream request: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 finalize http fastcgi request
2012/10/15 22:04:17 [debug] 74285#0: *1 free keepalive peer
2012/10/15 22:04:17 [debug] 74285#0: *1 free keepalive peer: saving connection 0000000116C1DE40
2012/10/15 22:04:17 [debug] 74285#0: *1 event timer del: 61: 1350345857454
2012/10/15 22:04:17 [debug] 74285#0: *1 free rr peer 1 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream temp fd: -1
2012/10/15 22:04:17 [debug] 74285#0: *1 http output filter "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 image filter
2012/10/15 22:04:17 [debug] 74285#0: *1 xslt filter body
2012/10/15 22:04:17 [debug] 74285#0: *1 http postpone filter "/Piwik?" 00007FFF55452440
2012/10/15 22:04:17 [debug] 74285#0: *1 http gzip filter
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in: 00007F906403FE40
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FDF0 ni:0000000000000000 ai:0
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate in: ni:0000000000000000 no:00007F9064603C00 ai:0 ao:8192 fl:4 redo:0
2012/10/15 22:04:17 [debug] 74285#0: *1 deflate out: ni:0000000000000000 no:00007F9064605084 ai:0 ao:2940 rc:1
2012/10/15 22:04:17 [debug] 74285#0: *1 gzip in_buf:00007F906403FDF0 pos:0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 000000010B07C000
2012/10/15 22:04:17 [debug] 74285#0: *1 http chunk: 10
2012/10/15 22:04:17 [debug] 74285#0: *1 http chunk: 5260
2012/10/15 22:04:17 [debug] 74285#0: *1 write old buf t:1 f:0 00007F906403F798, pos 00007F906403F798, size: 515 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 write new buf t:1 f:0 00007F906403FF40, pos 00007F906403FF40, size: 6 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 write new buf t:0 f:0 0000000000000000, pos 000000010A8F1988, size: 10 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 write new buf t:1 f:0 00007F9064603C00, pos 00007F9064603C00, size: 5260 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 write new buf t:0 f:0 0000000000000000, pos 000000010A8A31F7, size: 7 file: 0, size: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http write filter: l:1 f:1 s:5798
2012/10/15 22:04:17 [debug] 74285#0: *1 http write filter limit 0
2012/10/15 22:04:17 [debug] 74285#0: *1 writev: 5798 of 5798
2012/10/15 22:04:17 [debug] 74285#0: *1 http write filter 0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 http copy filter: 0 "/Piwik?"
2012/10/15 22:04:17 [debug] 74285#0: *1 http finalize request: 0, "/Piwik?" a:1, c:1
2012/10/15 22:04:17 [debug] 74285#0: *1 set http keepalive handler
2012/10/15 22:04:17 [debug] 74285#0: *1 http close request
2012/10/15 22:04:17 [debug] 74285#0: *1 http log handler
2012/10/15 22:04:17 [debug] 74285#0: *1 posix_memalign: 00007F9064037000:4096 @16
2012/10/15 22:04:17 [debug] 74285#0: *1 run cleanup: 00007F9064008AF8
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F9064603C00
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F9064039000
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F906403B000
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F906403D000
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F9064007C00, unused: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F9064041000, unused: 7
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F906403F000, unused: 8
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F9064037000, unused: 3827
2012/10/15 22:04:17 [debug] 74285#0: *1 event timer add: 60: 10000:1350331467510
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F9064024C00
2012/10/15 22:04:17 [debug] 74285#0: *1 free: 00007F9064009000
2012/10/15 22:04:17 [debug] 74285#0: *1 hc free: 0000000000000000 0
2012/10/15 22:04:17 [debug] 74285#0: *1 hc busy: 0000000000000000 0
2012/10/15 22:04:17 [debug] 74285#0: *1 tcp_nodelay
2012/10/15 22:04:17 [debug] 74285#0: *1 reusable connection: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 http empty handler
2012/10/15 22:04:17 [debug] 74285#0: *1 http keepalive handler
2012/10/15 22:04:17 [debug] 74285#0: *1 malloc: 00007F9064009000:1024
2012/10/15 22:04:17 [debug] 74285#0: *1 recv: eof:0, avail:855, err:0
2012/10/15 22:04:17 [debug] 74285#0: *1 recv: fd:60 855 of 1024
2012/10/15 22:04:17 [debug] 74285#0: *1 reusable connection: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 malloc: 00007F9064024C00:1312
2012/10/15 22:04:17 [debug] 74285#0: *1 posix_memalign: 00007F9064037000:4096 @16
2012/10/15 22:04:17 [debug] 74285#0: *1 http process request line
2012/10/15 22:04:17 [debug] 74285#0: *1 http request line: "GET /js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf HTTP/1.1"
2012/10/15 22:04:17 [debug] 74285#0: *1 http uri: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 http args: ""
2012/10/15 22:04:17 [debug] 74285#0: *1 http exten: ""
2012/10/15 22:04:17 [debug] 74285#0: *1 http process request header line
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "Host: my.host.net"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "Accept: text/plain, */*; q=0.01"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "DNT: 1"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "X-Requested-With: XMLHttpRequest"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "Referer: http://my.host.net/Piwik"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "Accept-Language: en-gb"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "Accept-Encoding: gzip, deflate"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "Cookie: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/15 22:04:17 [debug] 74285#0: *1 http header: "Connection: keep-alive"
2012/10/15 22:04:17 [debug] 74285#0: *1 http header done
2012/10/15 22:04:17 [debug] 74285#0: *1 event timer del: 60: 1350331467510
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 rewrite phase: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var
2012/10/15 22:04:17 [debug] 74285#0: *1 http map started
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/15 22:04:17 [debug] 74285#0: *1 http map: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14" "0"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "0"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script if
2012/10/15 22:04:17 [debug] 74285#0: *1 http script if: false
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var
2012/10/15 22:04:17 [debug] 74285#0: *1 http geo started: a.b.c.d
2012/10/15 22:04:17 [debug] 74285#0: *1 http geo: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "0"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script if
2012/10/15 22:04:17 [debug] 74285#0: *1 http script if: false
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var
2012/10/15 22:04:17 [debug] 74285#0: *1 http map started
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "GET"
2012/10/15 22:04:17 [debug] 74285#0: *1 http map: "GET" "0"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "0"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script if
2012/10/15 22:04:17 [debug] 74285#0: *1 http script if: false
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "/"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "patches"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "fpm-status"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "fpm-status-3"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "nginx_status"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "/sites/default/files/audio/mp3"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "/sites/default/files/advagg_css/"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "/help/"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: ~ "/imagecache/"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: ~ "/files/styles/"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: ~ "^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: ~ "^.+\.(?:pdf|pptx?)$"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: ~ "^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: ~ "^.+\.php$"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: ~ "^(.*)/x-progress-id:(\w*)"
2012/10/15 22:04:17 [debug] 74285#0: *1 using configuration "/"
2012/10/15 22:04:17 [debug] 74285#0: *1 http cl:-1 max:10485760
2012/10/15 22:04:17 [debug] 74285#0: *1 rewrite phase: 3
2012/10/15 22:04:17 [debug] 74285#0: *1 rewrite phase: 4
2012/10/15 22:04:17 [debug] 74285#0: *1 post rewrite phase: 5
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 6
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 7
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 8
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 9
2012/10/15 22:04:17 [debug] 74285#0: *1 limit conn: B7CA6CC6 1
2012/10/15 22:04:17 [debug] 74285#0: *1 add cleanup: 00007F9064037F10
2012/10/15 22:04:17 [debug] 74285#0: *1 access phase: 10
2012/10/15 22:04:17 [debug] 74285#0: *1 access phase: 11
2012/10/15 22:04:17 [debug] 74285#0: *1 post access phase: 12
2012/10/15 22:04:17 [debug] 74285#0: *1 try files phase: 13
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 trying to use file: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf" "/Volumes/MHData/Web/apps/Drupal/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 trying to use file: "@drupal" "/Volumes/MHData/Web/apps/Drupal@drupal"
2012/10/15 22:04:17 [debug] 74285#0: *1 test location: "@drupal"
2012/10/15 22:04:17 [debug] 74285#0: *1 using location: @drupal "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf?"
2012/10/15 22:04:17 [debug] 74285#0: *1 rewrite phase: 3
2012/10/15 22:04:17 [debug] 74285#0: *1 rewrite phase: 4
2012/10/15 22:04:17 [debug] 74285#0: *1 post rewrite phase: 5
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 6
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 7
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 8
2012/10/15 22:04:17 [debug] 74285#0: *1 generic phase: 9
2012/10/15 22:04:17 [debug] 74285#0: *1 access phase: 10
2012/10/15 22:04:17 [debug] 74285#0: *1 access phase: 11
2012/10/15 22:04:17 [debug] 74285#0: *1 post access phase: 12
2012/10/15 22:04:17 [debug] 74285#0: *1 try files phase: 13
2012/10/15 22:04:17 [debug] 74285#0: *1 upload-progress: ngx_http_uploadprogress_content_handler
2012/10/15 22:04:17 [debug] 74285#0: *1 posix_memalign: 00007F906403F000:4096 @16
2012/10/15 22:04:17 [debug] 74285#0: *1 http init upstream, client timer: 0
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "my.host.net"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 http cache key: "my.host.net/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 http map started
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/15 22:04:17 [debug] 74285#0: *1 http map: "SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835." "1"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "1"
2012/10/15 22:04:17 [debug] 74285#0: *1 posix_memalign: 00007F9064041000:4096 @16
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "QUERY_STRING"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "q="
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "&"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "QUERY_STRING: q=/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf&"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "REQUEST_METHOD"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "GET"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "REQUEST_METHOD: GET"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "CONTENT_TYPE"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "CONTENT_TYPE: "
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "CONTENT_LENGTH"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "CONTENT_LENGTH: "
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "SCRIPT_NAME"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "/index.php"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "SCRIPT_NAME: /index.php"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "REQUEST_URI"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "REQUEST_URI: /js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "DOCUMENT_URI"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "DOCUMENT_URI: /js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "DOCUMENT_ROOT"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "DOCUMENT_ROOT: /Volumes/MHData/Web/apps/Drupal"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "SERVER_PROTOCOL"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "HTTP/1.1"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "GATEWAY_INTERFACE"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "CGI/1.1"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "SERVER_SOFTWARE"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "nginx/"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "1.3.7"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "SERVER_SOFTWARE: nginx/1.3.7"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "REMOTE_ADDR"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "a.b.c.d"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "REMOTE_ADDR: a.b.c.d"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "REMOTE_PORT"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "56487"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "REMOTE_PORT: 56487"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "SERVER_ADDR"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "a.b.c.d"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "SERVER_ADDR: a.b.c.d"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "SERVER_PORT"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "80"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "SERVER_PORT: 80"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "SERVER_NAME"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "my.host.net"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "SERVER_NAME: my.host.net"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "REDIRECT_STATUS"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "200"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "REDIRECT_STATUS: 200"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "SCRIPT_FILENAME"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script var: "/Volumes/MHData/Web/apps/Drupal"
2012/10/15 22:04:17 [debug] 74285#0: *1 http script copy: "/index.php"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "SCRIPT_FILENAME: /Volumes/MHData/Web/apps/Drupal/index.php"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_HOST: my.host.net"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_ACCEPT: text/plain, */*; q=0.01"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_DNT: 1"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_X_REQUESTED_WITH: XMLHttpRequest"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_REFERER: http://my.host.net/Piwik"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_ACCEPT_LANGUAGE: en-gb"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate"
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_COOKIE: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/15 22:04:17 [debug] 74285#0: *1 fastcgi param: "HTTP_CONNECTION: keep-alive"
2012/10/15 22:04:17 [debug] 74285#0: *1 http cleanup add: 00007F906403FBA8
2012/10/15 22:04:17 [debug] 74285#0: *1 init keepalive peer
2012/10/15 22:04:17 [debug] 74285#0: *1 get keepalive peer
2012/10/15 22:04:17 [debug] 74285#0: *1 get rr peer, try: 1
2012/10/15 22:04:17 [debug] 74285#0: *1 get keepalive peer: using connection 0000000116C1DE40
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream connect: -4
2012/10/15 22:04:17 [debug] 74285#0: *1 http upstream send request
2012/10/15 22:04:17 [debug] 74285#0: *1 chain writer buf fl:0 s:1464
2012/10/15 22:04:17 [debug] 74285#0: *1 chain writer in: 00007F906403FC20
2012/10/15 22:04:17 [debug] 74285#0: *1 writev: 1464 of 1464
2012/10/15 22:04:17 [debug] 74285#0: *1 chain writer out: 0000000000000000
2012/10/15 22:04:17 [debug] 74285#0: *1 event timer add: 61: 14400000:1350345857780
2012/10/15 22:04:17 [debug] 74285#0: *1 http finalize request: -4, "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf?" a:1, c:3
2012/10/15 22:04:17 [debug] 74285#0: *1 http request count:3 blk:0
2012/10/15 22:04:17 [debug] 74285#0: *1 http finalize request: -4, "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf?" a:1, c:2
2012/10/15 22:04:17 [debug] 74285#0: *1 http request count:2 blk:0
2012/10/15 22:04:18 [debug] 74285#0: *1 http upstream request: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf?"
2012/10/15 22:04:18 [debug] 74285#0: *1 http upstream process header
2012/10/15 22:04:18 [debug] 74285#0: *1 malloc: 00007F9064007C00:4096
2012/10/15 22:04:18 [debug] 74285#0: *1 recv: eof:0, avail:8192, err:0
2012/10/15 22:04:18 [debug] 74285#0: *1 recv: fd:61 3972 of 3972
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record byte: 06
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record byte: 01
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record byte: 1F
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record byte: F8
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record byte: 00
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi record length: 8184
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "X-Drupal-Cache: MISS"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Etag: "1350331457-1""
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "X-XSS-Protection: 1; mode=block"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "X-Content-Type-Options: nosniff"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "X-Frame-Options: SameOrigin"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Expires: Tue, 15 Oct 2013 20:04:17 +0000"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Cache-Control: private, max-age=31536000"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Content-Type: text/html; charset=utf-8"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Content-Language: en"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Last-Modified: Mon, 15 Oct 2012 20:04:17 +0000"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Vary: Cookie"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Vary: Accept-Encoding"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header: "Content-Encoding: gzip"
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi parser: 1
2012/10/15 22:04:18 [debug] 74285#0: *1 http fastcgi header done
2012/10/15 22:04:18 [debug] 74285#0: *1 http script var: "BYPASS"
2012/10/15 22:04:18 [debug] 74285#0: *1 uploadprogress error-tracker error: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 xslt filter header
2012/10/15 22:04:18 [debug] 74285#0: *1 HTTP/1.1 200 OK
Server: nginx
Date: Mon, 15 Oct 2012 20:04:18 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
Keep-Alive: timeout=10
Etag: "1350331457-1"
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SameOrigin
Expires: Thu, 01 Jan 1970 00:00:01 GMT
Cache-Control: no-cache
Content-Language: en
Last-Modified: Mon, 15 Oct 2012 20:04:17 +0000
Vary: Cookie
Vary: Accept-Encoding
Content-Encoding: gzip
X-Micro-Cache: BYPASS

2012/10/15 22:04:18 [debug] 74285#0: *1 write new buf t:1 f:0 00007F90640417D0, pos 00007F90640417D0, size: 523 file: 0, size: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http write filter: l:0 f:0 s:523
2012/10/15 22:04:18 [debug] 74285#0: *1 http script var: "1"
2012/10/15 22:04:18 [debug] 74285#0: *1 http cacheable: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 http upstream process upstream
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe read upstream: 1
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe preread: 3568
2012/10/15 22:04:18 [debug] 74285#0: *1 input buf #0 00007F9064007E10
2012/10/15 22:04:18 [debug] 74285#0: *1 input buf 00007F9064007E10 3568
2012/10/15 22:04:18 [debug] 74285#0: *1 malloc: 00007F906403D000:4096
2012/10/15 22:04:18 [debug] 74285#0: *1 readv: eof:0, avail:4220, err:0
2012/10/15 22:04:18 [debug] 74285#0: *1 readv: 1, last:4096
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe recv chain: 4096
2012/10/15 22:04:18 [debug] 74285#0: *1 input buf #1 00007F906403D000
2012/10/15 22:04:18 [debug] 74285#0: *1 input buf 00007F906403D000 4096
2012/10/15 22:04:18 [debug] 74285#0: *1 malloc: 00007F906403B000:4096
2012/10/15 22:04:18 [debug] 74285#0: *1 readv: eof:0, avail:124, err:0
2012/10/15 22:04:18 [debug] 74285#0: *1 readv: 1, last:4096
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe recv chain: 124
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe buf in   s:1 t:1 f:0 00007F9064007C00, pos 00007F9064007E10, size: 3568 file: 0, size: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe buf in   s:1 t:1 f:0 00007F906403D000, pos 00007F906403D000, size: 4096 file: 0, size: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe buf free s:0 t:1 f:0 00007F906403B000, pos 00007F906403B000, size: 124 file: 0, size: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe length: 124
2012/10/15 22:04:18 [debug] 74285#0: *1 input buf #2 00007F906403B000
2012/10/15 22:04:18 [debug] 74285#0: *1 input buf 00007F906403B000 124
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe write downstream: 1
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe write busy: 0
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe write buf ls:1 00007F9064007E10 3568
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe write buf ls:1 00007F906403D000 4096
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe write buf ls:1 00007F906403B000 124
2012/10/15 22:04:18 [debug] 74285#0: *1 pipe write: out:00007F9064041B58, f:1
2012/10/15 22:04:18 [debug] 74285#0: *1 http output filter "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf?"
2012/10/15 22:04:18 [debug] 74285#0: *1 http copy filter: "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf?"
2012/10/15 22:04:18 [debug] 74285#0: *1 image filter
2012/10/15 22:04:18 [debug] 74285#0: *1 xslt filter body
2012/10/15 22:04:18 [debug] 74285#0: *1 http postpone filter "/js/admin_menu/cache/56a8038749e70e0ead9f6634973a7fdf?" 00007F9064041AF8
2012/10/15 22:04:18 [debug] 74285#0: *1 http chunk: 3568
2012/10/15 22:04:18 [debug] 74285#0: *1 http 
perusio commented 12 years ago

He's entering at the / location. I continue to find bizarre that there's no attempts to enter on the Piwik location. Try changing the ^~ to ~* and see what happens. As you can see you get the full process of location matching. So if you request Piwik it should attempt ^~ /Piwik. Try commenting the drupal config and see how it goes. Try also adding a slash to the end: ^~ /Piwik/ and request /Piwik/.

Sil68 commented 12 years ago

Might it be that-due to some surreal reason--the order of the rules has got an impact? When reading through various sources this actually shouldn't be the case, should it?

Sil68 commented 12 years ago

When adding the Piwik configuration to the Drupal one, and replacing the '^~' with '~*' it seems to be working, well most of it, any (static) images are missing/not being found.

Sil68 commented 12 years ago

When removing the Piwik (sub-)configuration from the Drupal configuration, and adding the Piwik config one level up, directly into the site config, I'm receiving a 404 error.

Site config ('my.host.net')

## define a zone for limiting the number of simultaneous connections accepted
limit_conn_zone             $binary_remote_addr     zone=my.host.net:10m;

##
## HTTP server.
##
server {

    listen                  a.b.c.d:80;                             # IPv4

    server_name             my.host.net;
    limit_conn              my.host.net 32;

    ## Access and error logs.
    access_log              /var/log/nginx/my.host.net-access.log;
    error_log               /var/log/nginx/my.host.net-error.log    debug;

    ## See the blacklist.conf file at the parent dir: /etc/nginx.
    ## Deny access based on the User-Agent header.
    if ($bad_bot)   {
        return              444;
    }
    ## Deny access based on the Referer header.
    if ($bad_referer)   {
        return              444;
    }

    ## Protection against illegal HTTP methods. Out of the box only HEAD,
    ## GET and POST are allowed.
    if ($not_allowed_method)    {
        return              405;
    }

    ## Filesystem root of the site and index.
    root                    /Volumes/MHData/Web/apps/Drupal;
    index                   index.html index.htm index.php index.php3 index.php4 index.php5;

    ## If you're using a Nginx version greater or equal to 1.1.4 then
    ## you can use keep alive connections to the upstream be it
    ## FastCGI or Apache. If that's not the case comment out the line below.
    fastcgi_keep_conn       on;     # keep alive to the FCGI upstream

    ### Drupal 7-specific settings
    include                 apps.d/drupal/drupal.conf;                  # generic Drupal

    ## For upload progress to work. From the README of the
    ## filefield_nginx_progress module.
    location    ~       ^(.*)/x-progress-id:(\w*)   {
        rewrite             ^(.*)/x-progress-id:(\w*)   $1?X-Progress-ID=$2;
        #return             302     $1?X-Progress-ID=$2;
    }

    location    ^~      /progress   {
        report_uploads      uploads;
    }

    ## Including the php-fpm status and ping pages config.
    ## Uncomment to enable if you're running php-fpm.
    include                 conf.d/php_fpm_status_vhost.conf;

    ## Including the Nginx stub status page for having stats about
    ## Nginx activity: http://wiki.nginx.org/HttpStubStatusModule.
    include                 conf.d/nginx_status_vhost.conf;

    ## miscellaneous settings & configurations
    include                 apps.d/piwik/piwik.conf;

} # HTTP server

Piwik config

#location       /Piwik  {
#location       /Piwik/ {
#location   ^~      /Piwik  {
#location   ^~      /Piwik/ {
location    ~*      /Piwik  {
#location   ~*      /Piwik/ {

    root                /Volumes/MHData/Web/apps;

    ## Disallow any usage of piwik assets if referer is non valid.
    location    ~*      ^/Piwik/.+\.(?:css|gif|jpe?g|js|png|swf)$   {

        ## Defining the valid referers.
        valid_referers  none    blocked *.host.net;
        if ($invalid_referer)   {
            return      444;
        }

        expires         max;

        ## No need to bleed constant updates. Send the all shebang in one
        ## fell swoop.
        tcp_nodelay     off;

        ## Set the OS file cache.
        open_file_cache             max=500 inactive=120s;
        open_file_cache_valid       45s;
        open_file_cache_min_uses    2;
        open_file_cache_errors      off;
    }

    ## Relay all index.php requests to fastcgi.
    location    =       /Piwik/index.php    {
        fastcgi_pass    phpcgi;
        ## FastCGI cache.
        ## cache ui for 5m (set the same interval of your crontab)
        include         apps.d/piwik/fcgi_piwik_cache.conf;
            }

    ## Relay all piwik.php requests to fastcgi.
    location    =       /Piwik/piwik.php    {
        fastcgi_pass    phpcgi;
        include         apps.d/piwik/fcgi_piwik_long_cache.conf;
    }

    ## Any other attempt to access PHP files redirects to the root.
    location    ~*      ^/Piwik/.+\.php$    {
        return          302     /Piwik;
    }

    ## Redirect to the root if attempting to access a txt file.
    location    ~*      /Piwik/(?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$    {
        return          302     /Piwik;
    }

    ## Disallow access to several helper files.
    location    ~*      /Piwik/\.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$ {
        return          404;
    }

    ## Try all locations and relay to index.php as a fallback.
    try_files           $uri    /Piwik/index.php?$query_string;

}

Debug Log

2012/10/16 21:45:23 [debug] 24821#0: kevent set event: 41: ft:-1 fl:0005
2012/10/16 21:45:23 [debug] 24821#0: kevent deleted: 41: ft:-1
2012/10/16 21:45:23 [debug] 24820#0: kevent set event: 41: ft:-1 fl:0005
2012/10/16 21:45:23 [debug] 24822#0: kevent set event: 41: ft:-1 fl:0005
2012/10/16 21:45:23 [debug] 24822#0: kevent deleted: 41: ft:-1
2012/10/16 21:45:37 [debug] 24820#0: accept on a.b.c.d:80, ready: 1
2012/10/16 21:45:37 [debug] 24820#0: posix_memalign: 00007FC932C1F910:256 @16
2012/10/16 21:45:37 [debug] 24820#0: *1 accept: a.b.c.d fd:60
2012/10/16 21:45:37 [debug] 24820#0: *1 event timer add: 60: 180000:1350416917355
2012/10/16 21:45:37 [debug] 24820#0: *1 kevent set event: 60: ft:-1 fl:0025
2012/10/16 21:45:37 [debug] 24820#0: *1 malloc: 00007FC933024C00:1312
2012/10/16 21:45:37 [debug] 24820#0: *1 posix_memalign: 00007FC932C1FA10:256 @16
2012/10/16 21:45:37 [debug] 24820#0: *1 malloc: 00007FC933009000:1024
2012/10/16 21:45:37 [debug] 24820#0: *1 posix_memalign: 00007FC933007C00:4096 @16
2012/10/16 21:45:37 [debug] 24820#0: *1 http process request line
2012/10/16 21:45:37 [debug] 24820#0: *1 recv: eof:0, avail:982, err:0
2012/10/16 21:45:37 [debug] 24820#0: *1 recv: fd:60 982 of 1024
2012/10/16 21:45:37 [debug] 24820#0: *1 http request line: "GET /Piwik/ HTTP/1.1"
2012/10/16 21:45:37 [debug] 24820#0: *1 http uri: "/Piwik/"
2012/10/16 21:45:37 [debug] 24820#0: *1 http args: ""
2012/10/16 21:45:37 [debug] 24820#0: *1 http exten: ""
2012/10/16 21:45:37 [debug] 24820#0: *1 http process request header line
2012/10/16 21:45:37 [debug] 24820#0: *1 http header: "Host: my.host.net"
2012/10/16 21:45:37 [debug] 24820#0: *1 http header: "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/16 21:45:37 [debug] 24820#0: *1 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2012/10/16 21:45:37 [debug] 24820#0: *1 http header: "Accept-Encoding: gzip, deflate"
2012/10/16 21:45:37 [debug] 24820#0: *1 http header: "Accept-Language: en-gb"
2012/10/16 21:45:37 [debug] 24820#0: *1 http header: "DNT: 1"
2012/10/16 21:45:37 [debug] 24820#0: *1 http header: "Cookie: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; piwik_auth=login%3DczoxMjoibWgtYWRtLXBpd2lrIjs%3D%3Atoken_auth%3DczozMjoiZWUzODQ3MTlhYjFjMTMyNzY5OWZlNjVkZWVmNzY0OGIiOw%3D%3D%3A_%3Db30e8bf7bf98bf3cb98e7fc21b0986d14fc346f0; PIWIK_SESSID=86vfqib16hqsnrqiqhntn5bkv5; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/16 21:45:37 [debug] 24820#0: *1 http header: "Connection: keep-alive"
2012/10/16 21:45:37 [debug] 24820#0: *1 http header done
2012/10/16 21:45:37 [debug] 24820#0: *1 event timer del: 60: 1350416917355
2012/10/16 21:45:37 [debug] 24820#0: *1 generic phase: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 rewrite phase: 1
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var
2012/10/16 21:45:37 [debug] 24820#0: *1 http map started
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/16 21:45:37 [debug] 24820#0: *1 http map: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14" "0"
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var: "0"
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if: false
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var
2012/10/16 21:45:37 [debug] 24820#0: *1 http geo started: a.b.c.d
2012/10/16 21:45:37 [debug] 24820#0: *1 http geo: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var: "0"
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if: false
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var
2012/10/16 21:45:37 [debug] 24820#0: *1 http map started
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var: "GET"
2012/10/16 21:45:37 [debug] 24820#0: *1 http map: "GET" "0"
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var: "0"
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if: false
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "patches"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "progress"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "ping-2"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "ping-3"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/sites/default/files/audio/ogg"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/sites/default/files/advagg_js/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/sites/default/files/advagg_css/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/help/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "/imagecache/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "/files/styles/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^.+\.(?:pdf|pptx?)$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^.+\.php$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^(.*)/x-progress-id:(\w*)"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "/Piwik"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^/Piwik/.+\.(?:css|gif|jpe?g|js|png|swf)$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^/Piwik.+\.php$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "/Piwik/(?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "/Piwik/\.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$"
2012/10/16 21:45:37 [debug] 24820#0: *1 using configuration "/Piwik"
2012/10/16 21:45:37 [debug] 24820#0: *1 http cl:-1 max:10485760
2012/10/16 21:45:37 [debug] 24820#0: *1 rewrite phase: 3
2012/10/16 21:45:37 [debug] 24820#0: *1 rewrite phase: 4
2012/10/16 21:45:37 [debug] 24820#0: *1 post rewrite phase: 5
2012/10/16 21:45:37 [debug] 24820#0: *1 generic phase: 6
2012/10/16 21:45:37 [debug] 24820#0: *1 generic phase: 7
2012/10/16 21:45:37 [debug] 24820#0: *1 generic phase: 8
2012/10/16 21:45:37 [debug] 24820#0: *1 generic phase: 9
2012/10/16 21:45:37 [debug] 24820#0: *1 limit conn: B7CA6CC6 1
2012/10/16 21:45:37 [debug] 24820#0: *1 add cleanup: 00007FC933008AF8
2012/10/16 21:45:37 [debug] 24820#0: *1 access phase: 10
2012/10/16 21:45:37 [debug] 24820#0: *1 access phase: 11
2012/10/16 21:45:37 [debug] 24820#0: *1 post access phase: 12
2012/10/16 21:45:37 [debug] 24820#0: *1 try files phase: 13
2012/10/16 21:45:37 [debug] 24820#0: *1 content phase: 14
2012/10/16 21:45:37 [debug] 24820#0: *1 content phase: 15
2012/10/16 21:45:37 [debug] 24820#0: *1 content phase: 16
2012/10/16 21:45:37 [debug] 24820#0: *1 open index "/Volumes/MHData/Web/apps/Piwik/index.html"
2012/10/16 21:45:37 [debug] 24820#0: *1 stat() "/Volumes/MHData/Web/apps/Piwik/index.html" failed (2: No such file or directory)
2012/10/16 21:45:37 [debug] 24820#0: *1 http index check dir: "/Volumes/MHData/Web/apps/Piwik"
2012/10/16 21:45:37 [debug] 24820#0: *1 open index "/Volumes/MHData/Web/apps/Piwik/index.htm"
2012/10/16 21:45:37 [debug] 24820#0: *1 stat() "/Volumes/MHData/Web/apps/Piwik/index.htm" failed (2: No such file or directory)
2012/10/16 21:45:37 [debug] 24820#0: *1 open index "/Volumes/MHData/Web/apps/Piwik/index.php"
2012/10/16 21:45:37 [debug] 24820#0: *1 internal redirect: "/Piwik/index.php?"
2012/10/16 21:45:37 [debug] 24820#0: *1 rewrite phase: 1
2012/10/16 21:45:37 [debug] 24820#0: *1 posix_memalign: 00007FC933041000:4096 @16
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var: "0"
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if: false
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var: "0"
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if: false
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var
2012/10/16 21:45:37 [debug] 24820#0: *1 http script var: "0"
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if
2012/10/16 21:45:37 [debug] 24820#0: *1 http script if: false
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "patches"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "progress"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "ping-2"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "ping-3"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/sites/default/files/audio/ogg"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/sites/default/files/advagg_js/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/sites/default/files/advagg_css/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: "/help/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "/imagecache/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "/files/styles/"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^.+\.(?:pdf|pptx?)$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$"
2012/10/16 21:45:37 [debug] 24820#0: *1 test location: ~ "^.+\.php$"
2012/10/16 21:45:37 [debug] 24820#0: *1 using configuration "^.+\.php$"
2012/10/16 21:45:37 [debug] 24820#0: *1 http cl:-1 max:10485760
2012/10/16 21:45:37 [debug] 24820#0: *1 rewrite phase: 3
2012/10/16 21:45:37 [debug] 24820#0: *1 rewrite phase: 4
2012/10/16 21:45:37 [debug] 24820#0: *1 http finalize request: 404, "/Piwik/index.php?" a:1, c:2
2012/10/16 21:45:37 [debug] 24820#0: *1 http special response: 404, "/Piwik/index.php?"
2012/10/16 21:45:37 [debug] 24820#0: *1 http set discard body
2012/10/16 21:45:37 [debug] 24820#0: *1 uploadprogress error-tracker error: 404
2012/10/16 21:45:37 [debug] 24820#0: *1 uploadprogress error-tracker not tracking in this location
2012/10/16 21:45:37 [debug] 24820#0: *1 xslt filter header
2012/10/16 21:45:37 [debug] 24820#0: *1 HTTP/1.1 404 Not Found
Server: nginx
Date: Tue, 16 Oct 2012 19:45:37 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Vary: Accept-Encoding
Content-Encoding: gzip

2012/10/16 21:45:37 [debug] 24820#0: *1 write new buf t:1 f:0 00007FC9330412D8, pos 00007FC9330412D8, size: 197 file: 0, size: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 http write filter: l:0 f:0 s:197
2012/10/16 21:45:37 [debug] 24820#0: *1 http output filter "/Piwik/index.php?"
2012/10/16 21:45:37 [debug] 24820#0: *1 http copy filter: "/Piwik/index.php?"
2012/10/16 21:45:37 [debug] 24820#0: *1 image filter
2012/10/16 21:45:37 [debug] 24820#0: *1 xslt filter body
2012/10/16 21:45:37 [debug] 24820#0: *1 http postpone filter "/Piwik/index.php?" 00007FC9330414B8
2012/10/16 21:45:37 [debug] 24820#0: *1 http gzip filter
2012/10/16 21:45:37 [debug] 24820#0: *1 malloc: 00007FC933014600:12288
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip alloc: n:1 s:5936 a:8192 p:00007FC933014600
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip alloc: n:512 s:2 a:1024 p:00007FC933016600
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip alloc: n:512 s:2 a:1024 p:00007FC933016A00
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip alloc: n:512 s:2 a:1024 p:00007FC933016E00
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip alloc: n:256 s:4 a:1024 p:00007FC933017200
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip in: 00007FC9330414E8
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip in_buf:00007FC9330413B0 ni:0000000103146CC0 ai:116
2012/10/16 21:45:37 [debug] 24820#0: *1 malloc: 00007FC933533E00:8192
2012/10/16 21:45:37 [debug] 24820#0: *1 deflate in: ni:0000000103146CC0 no:00007FC933533E00 ai:116 ao:8192 fl:0 redo:0
2012/10/16 21:45:37 [debug] 24820#0: *1 deflate out: ni:0000000103146D34 no:00007FC933533E00 ai:0 ao:8192 rc:0
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip in_buf:00007FC9330413B0 pos:0000000103146CC0
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip in: 00007FC9330414F8
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip in_buf:00007FC933041400 ni:0000000103146660 ai:46
2012/10/16 21:45:37 [debug] 24820#0: *1 deflate in: ni:0000000103146660 no:00007FC933533E00 ai:46 ao:8192 fl:4 redo:0
2012/10/16 21:45:37 [debug] 24820#0: *1 deflate out: ni:000000010314668E no:00007FC933533E6B ai:0 ao:8085 rc:1
2012/10/16 21:45:37 [debug] 24820#0: *1 gzip in_buf:00007FC933041400 pos:0000000103146660
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 00007FC933014600
2012/10/16 21:45:37 [debug] 24820#0: *1 http chunk: 10
2012/10/16 21:45:37 [debug] 24820#0: *1 http chunk: 115
2012/10/16 21:45:37 [debug] 24820#0: *1 write old buf t:1 f:0 00007FC9330412D8, pos 00007FC9330412D8, size: 197 file: 0, size: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 write new buf t:1 f:0 00007FC933041658, pos 00007FC933041658, size: 4 file: 0, size: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 write new buf t:0 f:0 0000000000000000, pos 000000010314A988, size: 10 file: 0, size: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 write new buf t:1 f:0 00007FC933533E00, pos 00007FC933533E00, size: 115 file: 0, size: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 write new buf t:0 f:0 0000000000000000, pos 00000001030FC1F7, size: 7 file: 0, size: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 http write filter: l:1 f:1 s:333
2012/10/16 21:45:37 [debug] 24820#0: *1 http write filter limit 0
2012/10/16 21:45:37 [debug] 24820#0: *1 writev: 333 of 333
2012/10/16 21:45:37 [debug] 24820#0: *1 http write filter 0000000000000000
2012/10/16 21:45:37 [debug] 24820#0: *1 http copy filter: 0 "/Piwik/index.php?"
2012/10/16 21:45:37 [debug] 24820#0: *1 http finalize request: 0, "/Piwik/index.php?" a:1, c:2
2012/10/16 21:45:37 [debug] 24820#0: *1 http request count:2 blk:0
2012/10/16 21:45:37 [debug] 24820#0: *1 http finalize request: -4, "/Piwik/index.php?" a:1, c:1
2012/10/16 21:45:37 [debug] 24820#0: *1 http request count:1 blk:0
2012/10/16 21:45:37 [debug] 24820#0: *1 http close request
2012/10/16 21:45:37 [debug] 24820#0: *1 http log handler
2012/10/16 21:45:37 [debug] 24820#0: *1 run cleanup: 00007FC933008AF8
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 00007FC933533E00
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 0000000000000000
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 00007FC933007C00, unused: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 00007FC933041000, unused: 2050
2012/10/16 21:45:37 [debug] 24820#0: *1 close http connection: 60
2012/10/16 21:45:37 [debug] 24820#0: *1 reusable connection: 0
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 00007FC933009000
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 00007FC933024C00
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 00007FC932C1F910, unused: 8
2012/10/16 21:45:37 [debug] 24820#0: *1 free: 00007FC932C1FA10, unused: 128
2012/10/16 21:45:39 [debug] 24820#0: accept on a.b.c.d:80, ready: 1
2012/10/16 21:45:39 [debug] 24820#0: posix_memalign: 00007FC932C1F910:256 @16
2012/10/16 21:45:39 [debug] 24820#0: *2 accept: a.b.c.d fd:60
2012/10/16 21:45:39 [debug] 24820#0: *2 event timer add: 60: 180000:1350416919257
2012/10/16 21:45:39 [debug] 24820#0: *2 kevent set event: 60: ft:-1 fl:0025
2012/10/16 21:45:39 [debug] 24820#0: *2 malloc: 00007FC933024C00:1312
2012/10/16 21:45:39 [debug] 24820#0: *2 posix_memalign: 00007FC932C1FA10:256 @16
2012/10/16 21:45:39 [debug] 24820#0: *2 malloc: 00007FC933009000:1024
2012/10/16 21:45:39 [debug] 24820#0: *2 posix_memalign: 00007FC933041000:4096 @16
2012/10/16 21:45:39 [debug] 24820#0: *2 http process request line
2012/10/16 21:45:39 [debug] 24820#0: *2 recv: eof:0, avail:1008, err:0
2012/10/16 21:45:39 [debug] 24820#0: *2 recv: fd:60 1008 of 1024
2012/10/16 21:45:39 [debug] 24820#0: *2 http request line: "GET /Piwik/ HTTP/1.1"
2012/10/16 21:45:39 [debug] 24820#0: *2 http uri: "/Piwik/"
2012/10/16 21:45:39 [debug] 24820#0: *2 http args: ""
2012/10/16 21:45:39 [debug] 24820#0: *2 http exten: ""
2012/10/16 21:45:39 [debug] 24820#0: *2 http process request header line
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "Host: my.host.net"
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "DNT: 1"
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "Accept-Encoding: gzip, deflate"
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "Accept-Language: en-gb"
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "Cache-Control: max-age=0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "Cookie: SESSd04d6442803e6cfe6e2b28ff08fe29c4=Q9JnZOHJ6jWhs4sFJEN7DGzKiQTixuBXO0UwaoM9LKY; SESS66d3b3c656cdaa9908c3e47f01bb437a=UaJqpH6qm87-BwqSQ2dwnqE5_HQqMqEcPutpxnMBdKQ; PHPSESSID=st4dn1t24gh14ejnrd07ls7mi3; piwik_auth=login%3DczoxMjoibWgtYWRtLXBpd2lrIjs%3D%3Atoken_auth%3DczozMjoiZWUzODQ3MTlhYjFjMTMyNzY5OWZlNjVkZWVmNzY0OGIiOw%3D%3D%3A_%3Db30e8bf7bf98bf3cb98e7fc21b0986d14fc346f0; PIWIK_SESSID=86vfqib16hqsnrqiqhntn5bkv5; has_js=1; Drupal.tableDrag.showWeight=1; Drupal.toolbar.collapsed=0; _pk_id.13.83be=ec161aeaf5956bfa.1348547254.2.1348585492.1348547254.; _pk_id.1.9940=00ec4203202408e4.1339330059.12.1339523989.1339518835."
2012/10/16 21:45:39 [debug] 24820#0: *2 http header: "Connection: keep-alive"
2012/10/16 21:45:39 [debug] 24820#0: *2 http header done
2012/10/16 21:45:39 [debug] 24820#0: *2 event timer del: 60: 1350416919257
2012/10/16 21:45:39 [debug] 24820#0: *2 generic phase: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 rewrite phase: 1
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var
2012/10/16 21:45:39 [debug] 24820#0: *2 http map started
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14"
2012/10/16 21:45:39 [debug] 24820#0: *2 http map: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.14 (KHTML, like Gecko) Version/6.0.1 Safari/536.26.14" "0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var: "0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if: false
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var
2012/10/16 21:45:39 [debug] 24820#0: *2 http geo started: a.b.c.d
2012/10/16 21:45:39 [debug] 24820#0: *2 http geo: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var: "0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if: false
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var
2012/10/16 21:45:39 [debug] 24820#0: *2 http map started
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var: "GET"
2012/10/16 21:45:39 [debug] 24820#0: *2 http map: "GET" "0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var: "0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if: false
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "patches"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "progress"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "ping-2"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "ping-3"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/sites/default/files/audio/ogg"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/sites/default/files/advagg_js/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/sites/default/files/advagg_css/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/help/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "/imagecache/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "/files/styles/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^.+\.(?:pdf|pptx?)$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^.+\.php$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^(.*)/x-progress-id:(\w*)"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "/Piwik"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^/Piwik/.+\.(?:css|gif|jpe?g|js|png|swf)$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^/Piwik.+\.php$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "/Piwik/(?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "/Piwik/\.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$"
2012/10/16 21:45:39 [debug] 24820#0: *2 using configuration "/Piwik"
2012/10/16 21:45:39 [debug] 24820#0: *2 http cl:-1 max:10485760
2012/10/16 21:45:39 [debug] 24820#0: *2 rewrite phase: 3
2012/10/16 21:45:39 [debug] 24820#0: *2 rewrite phase: 4
2012/10/16 21:45:39 [debug] 24820#0: *2 post rewrite phase: 5
2012/10/16 21:45:39 [debug] 24820#0: *2 generic phase: 6
2012/10/16 21:45:39 [debug] 24820#0: *2 generic phase: 7
2012/10/16 21:45:39 [debug] 24820#0: *2 generic phase: 8
2012/10/16 21:45:39 [debug] 24820#0: *2 generic phase: 9
2012/10/16 21:45:39 [debug] 24820#0: *2 limit conn: B7CA6CC6 1
2012/10/16 21:45:39 [debug] 24820#0: *2 add cleanup: 00007FC933041F08
2012/10/16 21:45:39 [debug] 24820#0: *2 access phase: 10
2012/10/16 21:45:39 [debug] 24820#0: *2 access phase: 11
2012/10/16 21:45:39 [debug] 24820#0: *2 post access phase: 12
2012/10/16 21:45:39 [debug] 24820#0: *2 try files phase: 13
2012/10/16 21:45:39 [debug] 24820#0: *2 content phase: 14
2012/10/16 21:45:39 [debug] 24820#0: *2 content phase: 15
2012/10/16 21:45:39 [debug] 24820#0: *2 content phase: 16
2012/10/16 21:45:39 [debug] 24820#0: *2 open index "/Volumes/MHData/Web/apps/Piwik/index.html"
2012/10/16 21:45:39 [debug] 24820#0: *2 stat() "/Volumes/MHData/Web/apps/Piwik/index.html" failed (2: No such file or directory)
2012/10/16 21:45:39 [debug] 24820#0: *2 http index check dir: "/Volumes/MHData/Web/apps/Piwik"
2012/10/16 21:45:39 [debug] 24820#0: *2 open index "/Volumes/MHData/Web/apps/Piwik/index.htm"
2012/10/16 21:45:39 [debug] 24820#0: *2 stat() "/Volumes/MHData/Web/apps/Piwik/index.htm" failed (2: No such file or directory)
2012/10/16 21:45:39 [debug] 24820#0: *2 open index "/Volumes/MHData/Web/apps/Piwik/index.php"
2012/10/16 21:45:39 [debug] 24820#0: *2 internal redirect: "/Piwik/index.php?"
2012/10/16 21:45:39 [debug] 24820#0: *2 rewrite phase: 1
2012/10/16 21:45:39 [debug] 24820#0: *2 posix_memalign: 00007FC933007C00:4096 @16
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var: "0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if: false
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var: "0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if: false
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var
2012/10/16 21:45:39 [debug] 24820#0: *2 http script var: "0"
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if
2012/10/16 21:45:39 [debug] 24820#0: *2 http script if: false
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "patches"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "progress"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "ping-2"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "ping-3"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/sites/default/files/audio/ogg"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/sites/default/files/advagg_js/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/sites/default/files/advagg_css/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: "/help/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "/imagecache/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "/files/styles/"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^.+\.(?:pdf|pptx?)$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^(?:.+\.(?:htaccess|make|txt|engine|inc|info|install|module|profile|po|sh|.*sql|test|theme|tpl(?:\.php)?|xtmpl)|code-style\.pl|/Entries.*|/Repository|/Root|/Tag|/Template)$"
2012/10/16 21:45:39 [debug] 24820#0: *2 test location: ~ "^.+\.php$"
2012/10/16 21:45:39 [debug] 24820#0: *2 using configuration "^.+\.php$"
2012/10/16 21:45:39 [debug] 24820#0: *2 http cl:-1 max:10485760
2012/10/16 21:45:39 [debug] 24820#0: *2 rewrite phase: 3
2012/10/16 21:45:39 [debug] 24820#0: *2 rewrite phase: 4
2012/10/16 21:45:39 [debug] 24820#0: *2 http finalize request: 404, "/Piwik/index.php?" a:1, c:2
2012/10/16 21:45:39 [debug] 24820#0: *2 http special response: 404, "/Piwik/index.php?"
2012/10/16 21:45:39 [debug] 24820#0: *2 http set discard body
2012/10/16 21:45:39 [debug] 24820#0: *2 uploadprogress error-tracker error: 404
2012/10/16 21:45:39 [debug] 24820#0: *2 uploadprogress error-tracker not tracking in this location
2012/10/16 21:45:39 [debug] 24820#0: *2 xslt filter header
2012/10/16 21:45:39 [debug] 24820#0: *2 HTTP/1.1 404 Not Found
Server: nginx
Date: Tue, 16 Oct 2012 19:45:39 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: close
Vary: Accept-Encoding
Content-Encoding: gzip

2012/10/16 21:45:39 [debug] 24820#0: *2 write new buf t:1 f:0 00007FC933007F10, pos 00007FC933007F10, size: 197 file: 0, size: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 http write filter: l:0 f:0 s:197
2012/10/16 21:45:39 [debug] 24820#0: *2 http output filter "/Piwik/index.php?"
2012/10/16 21:45:39 [debug] 24820#0: *2 http copy filter: "/Piwik/index.php?"
2012/10/16 21:45:39 [debug] 24820#0: *2 image filter
2012/10/16 21:45:39 [debug] 24820#0: *2 xslt filter body
2012/10/16 21:45:39 [debug] 24820#0: *2 http postpone filter "/Piwik/index.php?" 00007FC933041FE8
2012/10/16 21:45:39 [debug] 24820#0: *2 http gzip filter
2012/10/16 21:45:39 [debug] 24820#0: *2 malloc: 00007FC933014600:12288
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip alloc: n:1 s:5936 a:8192 p:00007FC933014600
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip alloc: n:512 s:2 a:1024 p:00007FC933016600
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip alloc: n:512 s:2 a:1024 p:00007FC933016A00
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip alloc: n:512 s:2 a:1024 p:00007FC933016E00
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip alloc: n:256 s:4 a:1024 p:00007FC933017200
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip in: 00007FC933008100
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip in_buf:00007FC933007FD8 ni:0000000103146CC0 ai:116
2012/10/16 21:45:39 [debug] 24820#0: *2 malloc: 00007FC933533E00:8192
2012/10/16 21:45:39 [debug] 24820#0: *2 deflate in: ni:0000000103146CC0 no:00007FC933533E00 ai:116 ao:8192 fl:0 redo:0
2012/10/16 21:45:39 [debug] 24820#0: *2 deflate out: ni:0000000103146D34 no:00007FC933533E00 ai:0 ao:8192 rc:0
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip in_buf:00007FC933007FD8 pos:0000000103146CC0
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip in: 00007FC933008110
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip in_buf:00007FC933008028 ni:0000000103146660 ai:46
2012/10/16 21:45:39 [debug] 24820#0: *2 deflate in: ni:0000000103146660 no:00007FC933533E00 ai:46 ao:8192 fl:4 redo:0
2012/10/16 21:45:39 [debug] 24820#0: *2 deflate out: ni:000000010314668E no:00007FC933533E6B ai:0 ao:8085 rc:1
2012/10/16 21:45:39 [debug] 24820#0: *2 gzip in_buf:00007FC933008028 pos:0000000103146660
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 00007FC933014600
2012/10/16 21:45:39 [debug] 24820#0: *2 http chunk: 10
2012/10/16 21:45:39 [debug] 24820#0: *2 http chunk: 115
2012/10/16 21:45:39 [debug] 24820#0: *2 write old buf t:1 f:0 00007FC933007F10, pos 00007FC933007F10, size: 197 file: 0, size: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 write new buf t:1 f:0 00007FC933008270, pos 00007FC933008270, size: 4 file: 0, size: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 write new buf t:0 f:0 0000000000000000, pos 000000010314A988, size: 10 file: 0, size: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 write new buf t:1 f:0 00007FC933533E00, pos 00007FC933533E00, size: 115 file: 0, size: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 write new buf t:0 f:0 0000000000000000, pos 00000001030FC1F7, size: 7 file: 0, size: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 http write filter: l:1 f:1 s:333
2012/10/16 21:45:39 [debug] 24820#0: *2 http write filter limit 0
2012/10/16 21:45:39 [debug] 24820#0: *2 writev: 333 of 333
2012/10/16 21:45:39 [debug] 24820#0: *2 http write filter 0000000000000000
2012/10/16 21:45:39 [debug] 24820#0: *2 http copy filter: 0 "/Piwik/index.php?"
2012/10/16 21:45:39 [debug] 24820#0: *2 http finalize request: 0, "/Piwik/index.php?" a:1, c:2
2012/10/16 21:45:39 [debug] 24820#0: *2 http request count:2 blk:0
2012/10/16 21:45:39 [debug] 24820#0: *2 http finalize request: -4, "/Piwik/index.php?" a:1, c:1
2012/10/16 21:45:39 [debug] 24820#0: *2 http request count:1 blk:0
2012/10/16 21:45:39 [debug] 24820#0: *2 http close request
2012/10/16 21:45:39 [debug] 24820#0: *2 http log handler
2012/10/16 21:45:39 [debug] 24820#0: *2 run cleanup: 00007FC933041F08
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 00007FC933533E00
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 0000000000000000
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 00007FC933041000, unused: 8
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 00007FC933007C00, unused: 2026
2012/10/16 21:45:39 [debug] 24820#0: *2 close http connection: 60
2012/10/16 21:45:39 [debug] 24820#0: *2 reusable connection: 0
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 00007FC933009000
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 00007FC933024C00
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 00007FC932C1F910, unused: 8
2012/10/16 21:45:39 [debug] 24820#0: *2 free: 00007FC932C1FA10, unused: 128
Sil68 commented 12 years ago

When looking into the error log, one can observe that the Drupal directory is being used instead of the Piwik one, so nginx is trying to load from '.../Drupal/Piwik' instead of '.../Piwik'.

2012/10/17 21:06:23 [error] 97901#0: *7 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/plugins/CoreHome/templates/images/reset_search.png" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/plugins/CoreHome/templates/images/reset_search.png HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:23 [error] 97901#0: *8 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/logo-header.png" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/logo-header.png HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:23 [error] 97901#0: *10 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/loading-blue.gif" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/loading-blue.gif HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:23 [error] 97901#0: *9 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/icon-calendar.gif" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/icon-calendar.gif HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:24 [error] 97901#0: *17 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/close.png" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/close.png HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:24 [error] 97901#0: *23 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/maximise.png" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/maximise.png HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:24 [error] 97901#0: *24 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/minimise.png" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/minimise.png HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:24 [error] 97901#0: *25 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/refresh.png" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/refresh.png HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:24 [error] 97901#0: *26 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/loading-blue.gif" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/loading-blue.gif HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"
2012/10/17 21:06:25 [error] 97901#0: *27 open() "/Volumes/MHData/Web/apps/Drupal/Piwik/themes/default/images/data_table_footer_active_item.png" failed (2: No such file or directory), client: a.b.c.d, server: my.host.net, request: "GET /Piwik/themes/default/images/data_table_footer_active_item.png HTTP/1.1", host: "my.host.net", referrer: "http://my.host.net/Piwik/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday"

So I've tried to add some corresponding rewrites as a remedy.

##########
## remove any reference to a incorrectly placed parent directory
location    ~*      /Drupal/Piwik   {
    rewrite         ^(/Drupal)(/Piwik)/(.+)$    $2/$3   permanent;
}

##########
## append slash
location    ~*      /Piwik$ {
    rewrite         ^([^.]*[^/])$   $1/     permanent;
}

##########
## actual Piwik location
location    ~*      /Piwik/ {

    #root                   /Volumes/MHData/Web/apps/Piwik;
    root                    /Volumes/MHData/Web/apps;

    ## See the blacklist.conf file at the parent dir: /etc/nginx.
    ## Deny access based on the User-Agent header.

    ## -> Uncomment the lines below to enable bad bot blocking based
    ## on UA string.
    #if ($bad_bot)  {
    #     return            444;
    #}
    ## -> Uncomment the lines below to enable bad bot blocking based
    ## on referer header.
    ## Deny access based on the Referer header.
    #if ($bad_referer)  {
    #     return            444;
    #}

    ## Disallow any usage of piwik assets if referer is non valid.
    location    ~*      ^/Piwik/.+\.(?:css|gif|jpe?g|js|png|swf)$   {

        ## Defining the valid referers.
        valid_referers  none    blocked *.MMHein.at;
        if ($invalid_referer)   {
            return      444;
        }

        expires         max;

        ## No need to bleed constant updates. Send the all shebang in one
        ## fell swoop.
        tcp_nodelay     off;

        ## Set the OS file cache.
        open_file_cache             max=500 inactive=120s;
        open_file_cache_valid       45s;
        open_file_cache_min_uses    2;
        open_file_cache_errors      off;
    }

    ## Relay all index.php requests to fastcgi.
    location    ~*      ^/Piwik/index.php$  {
        fastcgi_pass    phpcgi;
        ## FastCGI cache.
        ## cache ui for 5m (set the same interval of your crontab)
        include         apps.d/piwik/fcgi_piwik_cache.conf;

        ## To use Apache for serving PHP uncomment the line bellow and
        ## comment out the above.
        #proxy_pass     http://phpapache;

        ### Use the proxy cache if proxying to Apache.
        #include            apps.d/piwik/proxy_piwik_cache.conf;
    }

    ## Relay all piwik.php requests to fastcgi.
    location    ~*      ^/Piwik/piwik.php$  {
        fastcgi_pass    phpcgi;
        include         apps.d/piwik/fcgi_piwik_long_cache.conf;

        ## To use Apache for serving PHP uncomment the line bellow and
        ## comment out the above.
        #proxy_pass     http://phpapache;

        ## Proxy cache.
        #include            apps.d/piwik/proxy_piwik_long_cache.conf;
    }

    ## Any other attempt to access PHP files redirects to the root.
    location    ~*      ^/Piwik/.+\.php$    {
        return          302     /Piwik;
    }

    ## Redirect to the root if attempting to access a txt file.
    location    ~*      ^/Piwik/(?:DESIGN|(?:gpl|README|LICENSE)[^.]*|LEGALNOTICE)(?:\.txt)*$   {
        return          302     /Piwik;
    }

    ## Disallow access to several helper files.
    location    ~*      ^/Piwik/\.(?:bat|html?|git|ini|sh|svn[^.]*|txt|tpl|xml)$    {
        return          404;
    }

    ## Try all locations and relay to index.php as a fallback.
    try_files       $uri    /Piwik/index.php?$query_string;

}

On a side note: when including the Piwik config in the site config I'm receiving an 404 error; only when adding it to the Drupal config it's working.

Sil68 commented 12 years ago

Hurrah!

When replacing

    #location   ~*      ^.+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$ {

in the Drupal config with

    location    ~*      ^.+(?:/Piwik/|/LimeSurvey/).+\.(?:css|js|jpe?g|gif|ico|png|html|xml)$   {

Piwik is just peachy! :)