Re: NginX reverse proxy with iRedMail Apache2

2014-04-17 Thread sim4life
I changed the faulty line in NginX default config file to: server { listen 80 default_server; listen [::]:80; root /usr/share/nginx/html; index index.html index.htm index.php; server_name mydomain.com www.mydomain.com; location / {

Re: Commodo SSL

2014-04-17 Thread mex
if your site is silviosiefke.com, there is no tls-service available on port 443 can you please paste the output of nginx -t / nginx -V ? testssl.sh v2.0rc2 (https://testssl.sh) U

Intermittent failures with SecureChannelFailure error on client

2014-04-17 Thread Venkat Morampudi
Hi, We are using NGINX (version 1.4.4) in front of HAProxy for SSl termination. We are seeing intermittent "Could not create SSL/TLS secure channel" failure from our .net client. On enabling debug logging on NGINX the following error is being recorded at the same time the client see the error

Re: Commodo SSL

2014-04-17 Thread Silvio Siefke
On Thu, 17 Apr 2014 17:43:13 +0200 "B.R." wrote: > Using http://lmgtfy.com/?q=PEM+routines%3APEM_read_bio%3Abad+end+line > I found http://drewsymo.com/2013/11/fixing-openssl-error/ That is fixt. Google I can use, thank you. But i not use google, i open the file and fix this lines. That's not th

Re: Commodo SSL

2014-04-17 Thread B.R.
Using http://lmgtfy.com/?q=PEM+routines%3APEM_read_bio%3Abad+end+line I found http://drewsymo.com/2013/11/fixing-openssl-error/ --- *B. R.* ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Commodo SSL

2014-04-17 Thread Silvio Siefke
Hello, i try to run HTTPS with a commodo ssl certificate. I use the follow tutorial: https://support.comodo.com/index.php?_m=knowledgebase&_a=viewarticle&kbarticleid=1365 I has use cat to write one crt file. The configuration: listen 80; listen 443 ssl spdy; ssl on; ssl_certificate /etc/nginx/

ngx + lua Ssl certificate content

2014-04-17 Thread Emre Çamalan
Hi, My nginx_extras packages works good such as reverse proxy with Ssl certificates. I want to add LUA codes into nginx.conf file for getting Certificates contents. I added this lua codes and I checked certificates which ID start to handshake with my server. Have u got any ideas or way? thanks

https not working

2014-04-17 Thread Joydeep Bakshi
Hello list, I have place nginx before apache as an accelator, and the http is working fine. But the isue is with https . Even there are some https link based on port like https://mysite.com:45 . None of the https is working. What option is available in nginx to simply handover the https protocol

Re: how to configure nginx with running apache ?

2014-04-17 Thread Joydeep Bakshi
Hello, I have installed and configured nginx for a existing domain, but I get "it works" at the browser. I have changed all port from 80 to 8080 in apache vhost and create same vhost in /etc/nginx/vhosts.d/mydomain.conf as below server { listen 80; # Default listen port server_name site.myd

Re: 499 in a proxy environment and short execution php scripts

2014-04-17 Thread mex
maybe you should capture the traffic with wireshark to see which party sends what packet in which order. regrads, mex Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249320,249365#msg-249365 ___ nginx mailing list nginx@nginx.org http://

Re: how to configure nginx with running apache ?

2014-04-17 Thread mex
> Hence I have to place nginx before apache without disturbing the > setup. > works seemlessly and speeds up your apache, when using proxy_cache, assuming your apache listens on 8080 server { listen 80; server_name myhost; location / { root /path/to/myapp/public; proxy_set_heade

Re: how to configure nginx with running apache ?

2014-04-17 Thread Joydeep Bakshi
Hello, thanks for your responses and wiki link. Regarding setup nginx before apache; I already have running vhosts with apache and a lot og .htaccess rules. Hence I have to place nginx before apache without disturbing the setup. Thanks On Thu, Apr 17, 2014 at 4:20 PM, mex wrote: > > Can anyo

Re: how to configure nginx with running apache ?

2014-04-17 Thread Steve Wilson
I've had a situation whereby a legacy django install was running on apache, nginx was used for caching static content on this and to serve other locations. I have another server that started off infront of apache and one by one over several weeks vhosts were migrated to nginx with the default

Re: how to configure nginx with running apache ?

2014-04-17 Thread mex
> Can anyone tell my what thebenefits are ( apart from .htaccess > support, > which I see all too often as a curse ) why anyone would do this in > preference to just using a pure nginx solution? > - out-of-the-box running stuff like mod_php / suphp - excessive use of rewite-rules in .htacces to

Re: how to configure nginx with running apache ?

2014-04-17 Thread Steve Holdoway
Can anyone tell my what thebenefits are ( apart from .htaccess support, which I see all too often as a curse ) why anyone would do this in preference to just using a pure nginx solution? Sorry this is a bit of a hijack, but as a long time ( 1.3 on ) apache user, and nginx convert, I can't see

Re: how to configure nginx with running apache ?

2014-04-17 Thread mex
you should make your apache listen on 127.0.0.1:80 and nginx on your external IP:80 (443 if you need ssl) did you checked the manuals in wthe wiki? http://wiki.nginx.org/Configuration -> proxying examples http://wiki.nginx.org/LikeApache-> all you need for a start after this you should check pr

how to configure nginx with running apache ?

2014-04-17 Thread Joydeep Bakshi
Greetings !! I am new to nginx and seeking some help from this list. I already have apache running with vhosts and like to install nginx as a frontend accelerator before apache. How can I configure nginx so that it can simply run with apache vhost ? Thanks ___