Custom Query (2297 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (16 - 18 of 2297)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Ticket Resolution Summary Owner Reporter
#16 invalid Nginx 1.1.2 ssl and Feedburner somebody Nazar Kulyk
Description

У меня есть вордпресс под нгинксом 1.1.2, у которого feeds.feedburner.com забирает ленту новостей. Сама лента открывается в браузере нормально, но фидбарнер получает ответ с кодом HTTP 400.

The request could not be understood by the server due to malformed syntax. The client SHOULD NOT repeat the request without modifications.

Раньше стояла версия 1.0.2 с которой все работало. Больше ничего в системе не менялось.

#17 invalid nginx fail to set 'fastcgi_param PATH_INFO' (mailman+fcgicrap) somebody Ludovic Bellière
Description

I was following the http://wiki.nginx.org/Mailman tutorial to use mailman with nginx. However, it didn't seems to works for me. Here are the basics informations, that could also be gathered in the mailman thread linked in this ticket.

nginx seems to not be able to set the PATH_INFO environment variable and by thus mailman can't detect the list it needs to works with.

I tried to use arbitrary string instead of a nginx variable, but that didn't work either.

So, for some reason unknown to me, nginx seems to fail at its job. There is nothing that could help finding the issue: nothing in the logs, or anywhere else.

You'll find a printenv script, gathered from the mailman-users thread, that I used to see if the variable was set.

Informations related: http://mail.python.org/pipermail/mailman-users/2010-September/070268.html

My config look like this:

server {
        server_name lists.xrogaan.be;
        root /usr/lib/cgi-bin;
        gzip off;

        location = / {
                rewrite ^ /mailman/listinfo permanent;
        }

        location / {
                rewrite ^ /mailman$uri;
        }

        location /mailman {
                fastcgi_split_path_info (^/mailman/[^/]*)(.*)$;
                include 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 on;
                fastcgi_pass  unix:/var/run/fcgiwrap.socket;
        }

        location /images/mailman {
                alias /var/lib/mailman/icons;
        }

        location /pipermail {
                alias /var/lib/mailman/archives/public;
                autoindex on;
        }
}
#18 fixed RHEL Package repo issue somebody www.google.com/accounts/o8/id?id=AItOawlUZ8IjYc_77WfCCetRoo8hsIR6raOfR7I
Description

I just tried to use the RHEL repo to install nginx and got the following error:

http://nginx.org/packages/rhel/5Server/x86_64/repodata/repomd.xml: [Errno 14] HTTP Error 404: Not Found
Trying other mirror.
Error: Cannot retrieve repository metadata (repomd.xml) for repository: nginx. Please verify its path and try again

The '5Server' part of the path is wrong. I changed my repo to the following at it works.

[nginx]
name=nginx repo
baseurl=http://nginx.org/packages/rhel/5/$basearch/
gpgcheck=0
enabled=1

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.