Re: Internal Server Error messages nginx proxy POP/IMAP/SMTP

2015-03-11 Thread dominus.ceo
Actually already did that, and i got the next answere: [root@proxy-n1 ~]# curl -H "Auth-Method: plain" \ > -H "Auth-User: ricardo.carrillo" \ > -H "Auth-Pass: r3dh4t" \ > -H "Auth-Protocol: imap" \ > -H "Auth-Login-Attempt: 1" \ > -i http://192.168.122.170:80/correo-proxy-auth/index.php HTTP/1.1 5

Re: Internal Server Error messages nginx proxy POP/IMAP/SMTP

2015-03-11 Thread Francis Daly
On Wed, Mar 11, 2015 at 03:16:51PM -0400, dominus.ceo wrote: Hi there, It sounds like one problem you have is the auth_http request not getting the expected response. See the example at http://nginx.org/en/docs/mail/ngx_mail_auth_http_module.html#protocol, and try making the request manually and

Internal Server Error messages nginx proxy POP/IMAP/SMTP

2015-03-11 Thread dominus.ceo
Hi, my name is Ricardo, I'm here to ask for help about an implementation of pop3/imap and smtp proxy functionality with nginx, i want to implement a "cluster" with those functionalities. Consideration - All nodes/machines are virtualized (VM). - All nodes/machines are configured with 600MB of RA

Re: gzip_types not working as expected

2015-03-11 Thread itpp2012
Use curl -i to see what you actually get back on a file request. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,257147,257198#msg-257198 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: gzip_types not working as expected

2015-03-11 Thread Frederik Nosi
Hi, On 03/11/2015 01:09 PM, Grant wrote: gzip is not working on my piwik.js file according to Google at developers.google.com/speed/pagespeed/insights. It's working fine on my CSS file. How can I troubleshoot this? gzip on; gzip_disable msie6; gzip_types text/javascript application/x-javascrip

Re: gzip_types not working as expected

2015-03-11 Thread Grant
> gzip is not working on my piwik.js file according to Google at > developers.google.com/speed/pagespeed/insights. It's working fine on > my CSS file. How can I troubleshoot this? > > gzip on; > gzip_disable msie6; > gzip_types text/javascript application/x-javascript text/css text/plain; > > - G