Метод POST, Proxy, SSL

mFF mff at bk.ru
Thu Mar 2 14:57:30 MSK 2006


FreeBSD 5.4
nginx/0.3.30

Настройки nginx

worker_processes  1;


events {
     worker_connections  1024;
}


http {
     include       mime.types;
     default_type  application/octet-stream;

     sendfile      on;
     tcp_nodelay   on;

     keepalive_timeout  75;

     gzip  off;

     proxy_buffering off;
     proxy_read_timeout    120;


server {
      listen X.X.X.X:8282;
      server_name bug.somedomain.ru;

      ssl on;
      ssl_certificate /usr/local/etc/nginx/ssl/bug.crt;
      ssl_certificate_key /usr/local/etc/nginx/ssl/bug.key;
      ssl_ciphers
ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL;

      access_log /var/log/nginx/bug-access.log;
      error_log /var/log/nginx/bug-error.log debug;

      location / {
      proxy_pass https://bug.somedomain.ru:8282/;
      proxy_redirect default;
         }
     }
}


Собственно все проксируется на Apache, на котором работает Bugzilla 
2.20.1. При попытке добавить аттачмент к багу всё заканчивается с 
ошибкой 504 Gateway Time-out

При этом в логах Apache

attachment.cgi: CGI parsing error: 400 Bad request (malformed multipart 
POST) at Bugzilla/CGI.pm line 91.
attachment.cgi: Compilation failed in require at 
/usr/local/www/bugzilla/attachment.cgi line 43.

Отладочный лог в аттаче.
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: bug-error.log.debug
URL: <http://nginx.org/pipermail/nginx-ru/attachments/20060302/202a2989/attachment.ksh>


More information about the nginx-ru mailing list