Welcome! Log In Create A New Profile

Advanced

Re: Running mailman within a domain

Sergey Budnevitch
June 14, 2012 09:28AM
On 14.06.2012, at 2:43, Patrick Ben Koetter wrote:

> Greetings,
>
> this is my first take at nginx. I try to add /cgi-bin/mailman/... to an
> existing server instance (mail.sys4.de). At the moment I can call scripts
> directly e.g. https://mail.sys4.de/cgi-bin/mailman/listinfo works.
>
> What I fail to accieve is getting access to lists e.g.
> https://mail.sys4.de/cgi-bin/mailman/listinfo/users. The Browser receives a
> 403 and the fast_cgi wrapper reports:
>
> Cannot chdir to script directory (/usr/lib/cgi-bin/mailman/listinfo)" while
> reading response header from upstream

Could you create /usr/lib/cgi-bin/mailman/printenv script with the following content:

#!/usr/bin/perl
print "Content-type: text/plain\n\n";
foreach $var (sort(keys(%ENV))) {
$val = $ENV{$var};
print "${var}=\"${val}\"\n";
}

Then run chmod +x /usr/lib/cgi-bin/mailman/printenv
and send result of the query http://mail.sys4.de/cgi-bin/mailman/printenv/blah-blah-blah.
If your config is correct, there should be
SCRIPT_FILENAME="/usr/lib/cgi-bin/mailman/printenv"
PATH_INFO="/blah-blah-blah"

BTW PATH_TRANSLATED in your config is unnecessary and erroneous.


>
>
> What is it I am doing wrong?
>
>
> This is my nginx configuration to include mailman into the website:
>
> location /cgi-bin/mailman {
> root /usr/lib/;
> fastcgi_split_path_info (^/cgi-bin/mailman/[^/]*)(.*)$;
> include /etc/nginx/fastcgi_params;
> fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
> fastcgi_param PATH_INFO $fastcgi_path_info;
> fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
> fastcgi_intercept_errors off;
> fastcgi_pass unix:/var/run/fcgiwrap.socket;
> }
> location /images/mailman {
> alias /usr/share/images/mailman;
> }
> location /pipermail {
> alias /var/lib/mailman/archives/public;
> autoindex on;
> }
>
> /etc/nginx/fastcgi_params contains these settings:
>
> fastcgi_param QUERY_STRING $query_string;
> fastcgi_param REQUEST_METHOD $request_method;
> fastcgi_param CONTENT_TYPE $content_type;
> fastcgi_param CONTENT_LENGTH $content_length;
>
> fastcgi_param SCRIPT_FILENAME $request_filename;
> fastcgi_param SCRIPT_NAME $fastcgi_script_name;
> fastcgi_param REQUEST_URI $request_uri;
> fastcgi_param DOCUMENT_URI $document_uri;
> fastcgi_param DOCUMENT_ROOT $document_root;
> fastcgi_param SERVER_PROTOCOL $server_protocol;
>
> fastcgi_param GATEWAY_INTERFACE CGI/1.1;
> fastcgi_param SERVER_SOFTWARE nginx/$nginx_version;
>
> fastcgi_param REMOTE_ADDR $remote_addr;
> fastcgi_param REMOTE_PORT $remote_port;
> fastcgi_param SERVER_ADDR $server_addr;
> fastcgi_param SERVER_PORT $server_port;
> fastcgi_param SERVER_NAME $server_name;
>
> fastcgi_param HTTPS $https;
>
> # PHP only, required if PHP was built with --enable-force-cgi-redirect
> fastcgi_param REDIRECT_STATUS 200;
>
>
>
> My error log gives this output:
>
> 2012/06/14 00:39:48 [debug] 27873#0: *13 post event 0000000002292AB0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 post event 00000000022A62C0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 delete posted event 00000000022A62C0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http empty handler
> 2012/06/14 00:39:48 [debug] 27873#0: *13 delete posted event 0000000002292AB0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http keepalive handler
> 2012/06/14 00:39:48 [debug] 27873#0: *13 malloc: 00000000022C7AE0:1024
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL_read: 1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL_read: 404
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL_read: -1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL_get_error: 2
> 2012/06/14 00:39:48 [debug] 27873#0: *13 reusable connection: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 malloc: 000000000224D310:1296
> 2012/06/14 00:39:48 [debug] 27873#0: *13 posix_memalign: 000000000228B240:4096 @16
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http process request line
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http request line: "GET /cgi-bin/mailman/listinfo/users HTTP/1.1"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http uri: "/cgi-bin/mailman/listinfo/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http args: ""
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http exten: ""
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http process request header line
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header: "Host: mail.sys4.de"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header: "User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101 Firefox/13.0"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header: "Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header: "Accept-Language: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header: "Accept-Encoding: gzip, deflate"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header: "DNT: 1"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header: "Connection: keep-alive"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header: "Referer: https://mail.sys4.de/cgi-bin/mailman/listinfo"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http header done
> 2012/06/14 00:39:48 [debug] 27873#0: *13 event timer del: 10: 1339627243545
> 2012/06/14 00:39:48 [debug] 27873#0: *13 generic phase: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 rewrite phase: 1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script regex: "^/$"
> 2012/06/14 00:39:48 [notice] 27873#0: *13 "^/$" does not match "/cgi-bin/mailman/listinfo/users", client: 178.27.33.0, server: mail.sys4.de, request: "GET /cgi-bin/mailman/listinfo/users HTTP/1.1", host: "mail.sys4.de", referrer: "https://mail.sys4.de/cgi-bin/mailman/listinfo"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 test location: "/images/mailman"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 test location: "/cgi-bin/mailman"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 using configuration "/cgi-bin/mailman"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http cl:-1 max:1048576
> 2012/06/14 00:39:48 [debug] 27873#0: *13 rewrite phase: 3
> 2012/06/14 00:39:48 [debug] 27873#0: *13 post rewrite phase: 4
> 2012/06/14 00:39:48 [debug] 27873#0: *13 generic phase: 5
> 2012/06/14 00:39:48 [debug] 27873#0: *13 generic phase: 6
> 2012/06/14 00:39:48 [debug] 27873#0: *13 generic phase: 7
> 2012/06/14 00:39:48 [debug] 27873#0: *13 access phase: 8
> 2012/06/14 00:39:48 [debug] 27873#0: *13 access phase: 9
> 2012/06/14 00:39:48 [debug] 27873#0: *13 access phase: 10
> 2012/06/14 00:39:48 [debug] 27873#0: *13 post access phase: 11
> 2012/06/14 00:39:48 [debug] 27873#0: *13 posix_memalign: 00000000022D15A0:4096 @16
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http init upstream, client timer: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "QUERY_STRING"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "QUERY_STRING: "
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "REQUEST_METHOD"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "GET"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "REQUEST_METHOD: GET"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "CONTENT_TYPE"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "CONTENT_TYPE: "
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "CONTENT_LENGTH"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "CONTENT_LENGTH: "
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "SCRIPT_FILENAME"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/usr/lib/cgi-bin/mailman/listinfo/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "SCRIPT_FILENAME: /usr/lib/cgi-bin/mailman/listinfo/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "SCRIPT_NAME"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/cgi-bin/mailman/listinfo"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "SCRIPT_NAME: /cgi-bin/mailman/listinfo"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "REQUEST_URI"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/cgi-bin/mailman/listinfo/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "REQUEST_URI: /cgi-bin/mailman/listinfo/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "DOCUMENT_URI"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/cgi-bin/mailman/listinfo/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "DOCUMENT_URI: /cgi-bin/mailman/listinfo/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "DOCUMENT_ROOT"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/usr/lib"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "DOCUMENT_ROOT: /usr/lib"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "SERVER_PROTOCOL"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "HTTP/1.1"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "SERVER_PROTOCOL: HTTP/1.1"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "GATEWAY_INTERFACE"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "CGI/1.1"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "GATEWAY_INTERFACE: CGI/1.1"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "SERVER_SOFTWARE"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "nginx/"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "1.1.19"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "SERVER_SOFTWARE: nginx/1.1.19"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "REMOTE_ADDR"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "178.27.33.0"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "REMOTE_ADDR: 178..27.33.0"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "REMOTE_PORT"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "35670"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "REMOTE_PORT: 35670"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "SERVER_ADDR"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "194.126.158.57"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "SERVER_ADDR: 194..126.158.57"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "SERVER_PORT"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "443"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "SERVER_PORT: 443"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "SERVER_NAME"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "mail.sys4.de"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "SERVER_NAME: mail.sys4.de"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "HTTPS"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "on"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTPS: on"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "REDIRECT_STATUS"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "200"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "REDIRECT_STATUS: 200"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "SCRIPT_FILENAME"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/usr/lib"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/cgi-bin/mailman/listinfo"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "SCRIPT_FILENAME: /usr/lib/cgi-bin/mailman/listinfo"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "PATH_INFO"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "PATH_INFO: /users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script copy: "PATH_TRANSLATED"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/usr/lib"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http script var: "/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "PATH_TRANSLATED: /usr/lib/users"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTP_HOST: mail.sys4.de"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTP_USER_AGENT: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101 Firefox/13..0"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTP_ACCEPT: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTP_ACCEPT_LANGUAGE: de-de,de;q=0.8,en-us;q=0.5,en;q=0.3"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTP_ACCEPT_ENCODING: gzip, deflate"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTP_DNT: 1"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTP_CONNECTION: keep-alive"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 fastcgi param: "HTTP_REFERER: https://mail.sys4.de/cgi-bin/mailman/listinfo"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http cleanup add: 00000000022D1C08
> 2012/06/14 00:39:48 [debug] 27873#0: *13 get rr peer, try: 1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 socket 12
> 2012/06/14 00:39:48 [debug] 27873#0: *13 epoll add connection: fd:12 ev:80000005
> 2012/06/14 00:39:48 [debug] 27873#0: *13 connect to unix:/var/run/fcgiwrap.socket, fd:12 #15
> 2012/06/14 00:39:48 [debug] 27873#0: *13 connected
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream connect: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 posix_memalign: 00000000022C7130:128 @16
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream send request
> 2012/06/14 00:39:48 [debug] 27873#0: *13 chain writer buf fl:0 s:1008
> 2012/06/14 00:39:48 [debug] 27873#0: *13 chain writer in: 00000000022D1C40
> 2012/06/14 00:39:48 [debug] 27873#0: *13 writev: 1008
> 2012/06/14 00:39:48 [debug] 27873#0: *13 chain writer out: 0000000000000000
> 2012/06/14 00:39:48 [debug] 27873#0: *13 event timer add: 12: 60000:1339627248804
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http finalize request: -4, "/cgi-bin/mailman/listinfo/users?" a:1, c:2
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http request count:2 blk:0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 post event 00000000022A6328
> 2012/06/14 00:39:48 [debug] 27873#0: *13 delete posted event 00000000022A6328
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream request: "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream dummy handler
> 2012/06/14 00:39:48 [debug] 27873#0: *13 post event 00000000022A6328
> 2012/06/14 00:39:48 [debug] 27873#0: *13 delete posted event 00000000022A6328
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream request: "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream dummy handler
> 2012/06/14 00:39:48 [debug] 27873#0: *13 post event 0000000002292B18
> 2012/06/14 00:39:48 [debug] 27873#0: *13 post event 00000000022A6328
> 2012/06/14 00:39:48 [debug] 27873#0: *13 delete posted event 00000000022A6328
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream request: "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream dummy handler
> 2012/06/14 00:39:48 [debug] 27873#0: *13 delete posted event 0000000002292B18
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream request: "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream process header
> 2012/06/14 00:39:48 [debug] 27873#0: *13 malloc: 00000000022525C0:4096
> 2012/06/14 00:39:48 [debug] 27873#0: *13 recv: fd:12 176 of 4096
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 07
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 45
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 03
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record length: 69
> 2012/06/14 00:39:48 [error] 27873#0: *13 FastCGI sent in stderr: "Cannot chdir to script directory (/usr/lib/cgi-bin/mailman/listinfo)" while reading response header from upstream, client: 178.27.33.0, server: mail.sys4.de, request: "GET /cgi-bin/mailman/listinfo/users HTTP/1.1", upstream: "fastcgi://unix:/var/run/fcgiwrap.socket:", host: "mail.sys4.de", referrer: "https://mail.sys4.de/cgi-bin/mailman/listinfo"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 07
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record length: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 06
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 33
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 05
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record length: 51
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi parser: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi header: "Status: 403 Forbidden"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi parser: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi header: "Content-type: text/plain"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi parser: 1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi header done
> 2012/06/14 00:39:48 [debug] 27873#0: *13 xslt filter header
> 2012/06/14 00:39:48 [debug] 27873#0: *13 HTTP/1.1 403 Forbidden
> Server: nginx/1.1.19
> Date: Wed, 13 Jun 2012 22:39:48 GMT
> Content-Type: text/plain
> Transfer-Encoding: chunked
> Connection: keep-alive
>
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write new buf t:1 f:0 00000000022D1E90, pos 00000000022D1E90, size: 163 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http write filter: l:0 f:0 s:163
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http cacheable: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream process upstream
> 2012/06/14 00:39:48 [debug] 27873#0: *13 pipe read upstream: 1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 pipe preread: 32
> 2012/06/14 00:39:48 [debug] 27873#0: *13 readv: 1:3920
> 2012/06/14 00:39:48 [debug] 27873#0: *13 pipe recv chain: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 pipe buf free s:0 t:1 f:0 00000000022525C0, pos 0000000002252650, size: 32 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 pipe length: -1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 input buf #0 0000000002252650
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 06
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record length: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi closed stdout
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 03
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 01
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 08
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record byte: 00
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi record length: 8
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http fastcgi sent end request
> 2012/06/14 00:39:48 [debug] 27873#0: *13 input buf 0000000002252650 3
> 2012/06/14 00:39:48 [debug] 27873#0: *13 pipe write downstream: 1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 pipe write downstream flush in
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http output filter "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http copy filter: "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 image filter
> 2012/06/14 00:39:48 [debug] 27873#0: *13 xslt filter body
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http postpone filter "/cgi-bin/mailman/listinfo/users?" 00000000022D20A0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http chunk: 3
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write old buf t:1 f:0 00000000022D1E90, pos 00000000022D1E90, size: 163 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write new buf t:1 f:0 00000000022D2188, pos 00000000022D2188, size: 3 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write new buf t:1 f:0 00000000022525C0, pos 0000000002252650, size: 3 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write new buf t:0 f:0 0000000000000000, pos 000000000049DD7D, size: 2 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http write filter: l:0 f:0 s:171
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http copy filter: 0 "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 pipe write downstream done
> 2012/06/14 00:39:48 [debug] 27873#0: *13 event timer: 12, old: 1339627248804, new: 1339627248805
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream exit: 0000000000000000
> 2012/06/14 00:39:48 [debug] 27873#0: *13 finalize http upstream request: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 finalize http fastcgi request
> 2012/06/14 00:39:48 [debug] 27873#0: *13 free rr peer 1 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 close http upstream connection: 12
> 2012/06/14 00:39:48 [debug] 27873#0: *13 free: 00000000022C7130, unused: 48
> 2012/06/14 00:39:48 [debug] 27873#0: *13 event timer del: 12: 1339627248804
> 2012/06/14 00:39:48 [debug] 27873#0: *13 reusable connection: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http upstream temp fd: -1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http output filter "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http copy filter: "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 image filter
> 2012/06/14 00:39:48 [debug] 27873#0: *13 xslt filter body
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http postpone filter "/cgi-bin/mailman/listinfo/users?" 00007FFF43D71E70
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http chunk: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write old buf t:1 f:0 00000000022D1E90, pos 00000000022D1E90, size: 163 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write old buf t:1 f:0 00000000022D2188, pos 00000000022D2188, size: 3 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write old buf t:1 f:0 00000000022525C0, pos 0000000002252650, size: 3 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write old buf t:0 f:0 0000000000000000, pos 000000000049DD7D, size: 2 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 write new buf t:0 f:0 0000000000000000, pos 000000000049DD7A, size: 5 file: 0, size: 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http write filter: l:1 f:0 s:176
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http write filter limit 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 malloc: 00000000022B9930:16384
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL buf copy: 163
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL buf copy: 3
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL buf copy: 3
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL buf copy: 2
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL buf copy: 5
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL to write: 176
> 2012/06/14 00:39:48 [debug] 27873#0: *13 SSL_write: 176
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http write filter 0000000000000000
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http copy filter: 0 "/cgi-bin/mailman/listinfo/users?"
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http finalize request: 0, "/cgi-bin/mailman/listinfo/users?" a:1, c:1
> 2012/06/14 00:39:48 [debug] 27873#0: *13 set http keepalive handler
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http close request
> 2012/06/14 00:39:48 [debug] 27873#0: *13 http log handler
> 2012/06/14 00:39:48 [debug] 27873#0: *13 free: 00000000022525C0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 free: 000000000228B240, unused: 6
> 2012/06/14 00:39:48 [debug] 27873#0: *13 free: 00000000022D15A0, unused: 444
> 2012/06/14 00:39:48 [debug] 27873#0: *13 event timer add: 10: 65000:1339627253805
> 2012/06/14 00:39:48 [debug] 27873#0: *13 free: 000000000224D310
> 2012/06/14 00:39:48 [debug] 27873#0: *13 free: 00000000022C7AE0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 hc free: 0000000000000000 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 hc busy: 0000000000000000 0
> 2012/06/14 00:39:48 [debug] 27873#0: *13 free: 00000000022B9930
> 2012/06/14 00:39:48 [debug] 27873#0: *13 reusable connection: 1
>
> Thanks
>
> p@rick
>
>
> --
> state of mind ()
>
> http://www.state-of-mind.de
>
> Franziskanerstraße 15 Telefon +49 89 3090 4664
> 81669 München Telefax +49 89 3090 4666
>
> Amtsgericht München Partnerschaftsregister PR 563
>
> _______________________________________________
> nginx mailing list
> nginx@nginx.org
> http://mailman.nginx.org/mailman/listinfo/nginx

_______________________________________________
nginx mailing list
nginx@nginx.org
http://mailman.nginx.org/mailman/listinfo/nginx
Subject Author Posted

Running mailman within a domain

Patrick Ben Koetter June 13, 2012 06:44PM

Re: Running mailman within a domain

Aleksandar Lazic June 14, 2012 04:54AM

Re: Running mailman within a domain

Patrick Ben Koetter June 14, 2012 07:20AM

Re: Running mailman within a domain

Falko Timme June 14, 2012 05:18AM

Re: Running mailman within a domain

Patrick Ben Koetter June 14, 2012 06:46AM

Re: Running mailman within a domain

Sergey Budnevitch June 14, 2012 09:28AM

Re: Running mailman within a domain

Patrick Ben Koetter June 14, 2012 09:30AM

Re: Running mailman within a domain

Sergey Budnevitch June 14, 2012 10:46AM

Re: Running mailman within a domain

Reinis Rozitis June 14, 2012 11:08AM

SOLVED: Re: Running mailman within a domain

Patrick Ben Koetter June 14, 2012 11:16AM

Re: SOLVED: Re: Running mailman within a domain

Francis Daly June 14, 2012 06:00PM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 221
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready