Can't get SNI to work with v1.4.1

2013-07-10 Thread kenperkins
I'm sure I'm doing something wrong, but so far as I can tell, I've setup my vhosts according to the nginx docs, but I'm still not getting the SNI setup to work: https://gist.github.com/kenperkins/cdecd152d0384bd40cb7 > nginx -V nginx version: nginx/1.4.1 TLS SNI support enabled configure argument

Re: migrating Topincs to nginx

2013-07-10 Thread Francis Daly
On Fri, Jul 05, 2013 at 03:13:51PM +0200, Piotr Kopszak wrote: Hi there, I have not tested any of this, so take it as "may be interesting to consider" rather than "this is the recipe to use". > "My main objective in the Apache and Topincs integration was that it > is possible to occupy any URL s

Re: Disable open_file_cache for a specific location

2013-07-10 Thread Francis Daly
On Tue, Jul 09, 2013 at 09:11:56AM -0400, Peleke wrote: Hi there, > Yes, you are right. Such a small change! Yes. nginx and wordpress do tend to work well together, so "typical" fixes are usually straightforward. > Thanks a lot and sorry for taking such a long time. Next time I know how to > p

Re: Possible to overwrite a fastcgi_param "later", once a location block has already been closed?

2013-07-10 Thread Francis Daly
On Tue, Jul 09, 2013 at 08:13:16PM -0400, Ben Johnson wrote: > On 7/9/2013 5:47 PM, Francis Daly wrote: Hi there, > > That line must be within the "location @php" block, in order for it to > > do what you want. > > Okay; this means that I would need to modify the ISPConfig virtual host > templat

Deploying sinatra app on rails app sub uri using( unicorn and nginx)

2013-07-10 Thread pravinmishra88
I have rails app running on unicorn+nginx. below is the nginx.conf and unicorn.rb configuration. nginx.conf upstream unicorn { server unix:/tmp/unicorn.todo.sock fail_timeout=0; } server{ listen 80 default deferred; #server_name localhost; root /var/www/demo/public; try_files $uri/ind

Re: Problem with VPN IP address and Nginx

2013-07-10 Thread wolfy
I try to understand why with nginx my IP address is not that the IP address of my VPN, then with Apache, or any website to display my IP it works correctly. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,240709,240737#msg-240737 ___ nginx ma

Re: SSL + Large file uploads (3GB+)

2013-07-10 Thread Maxim Dounin
Hello! On Wed, Jul 10, 2013 at 10:40:49AM -0400, FSC wrote: > Hello, > > I'm having problems uploading large files (3GB) to a server with SSL > enabled. I'm using nginx 1.4.2 + passenger. Files around 1GB large work > fine. > > My /tmp mount is large enough to handle files of that size. I guess

SSL + Large file uploads (3GB+)

2013-07-10 Thread FSC
Hello, I'm having problems uploading large files (3GB) to a server with SSL enabled. I'm using nginx 1.4.2 + passenger. Files around 1GB large work fine. My /tmp mount is large enough to handle files of that size. I guess I'm missing something. I read about a SSLRenegBufferSize parameter for the

Re: update NGINX to v 1.4.1

2013-07-10 Thread mex
1. aptitude download nginx or browse to the repo with your browser and downlaod manually or create a deb-package via checkinstall from nginx-sources 2. transfer to the target-machine 3. dpkg -i Posted at Nginx Forum: http://forum.nginx.org/read.php?2,240720,240726#msg-240726 ___

Re: update NGINX to v 1.4.1

2013-07-10 Thread Sylvia
download, put file into target machine install/upgrade with dpkg -i Posted at Nginx Forum: http://forum.nginx.org/read.php?2,240720,240725#msg-240725 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

update NGINX to v 1.4.1

2013-07-10 Thread Yunior Miguel A.
I have a server with some ruby aplication in nginx 1.1.19 and I am want to update to the version 1.4.1 but I can update using apt-get because the server no have internet. I can download the package in other PC. How can I do this? -- Posted via http://www.ruby-forum.com/.

Re: nginx cache loader process

2013-07-10 Thread Maxim Dounin
Hello! On Tue, Jul 09, 2013 at 07:50:32PM -0400, badtzhou wrote: > We are running nginx 1.2.9. What will happen if cache loader is running. The > file on disk haven't been loaded into the cache zone yet and someone try to > access the same file. Will it cause any issue? How will it affect cache >

Re: Problem with VPN IP address and Nginx

2013-07-10 Thread Reinis Rozitis
the ip detected by Nginx is my real ip address, not the IP address of my VPN, so i cannot use allow/deny function correctly. Could you please help me ? Your nginx/host IP is probably not routed via the VPN tunnel so you access it directly and it sees your real ip - so check the routes on your

Re: Wrong server used in SSL request

2013-07-10 Thread Reinis Rozitis
It seems, that if a SSL server for a domain is not configured, another server is used (instead of error-ing out). Is this correct? Yes, the default/first server. The “error-ing out” (with option to proceed anyway) usually happens on the client side/browser which checks that the host name doesn’

Re: Wrong server used in SSL request

2013-07-10 Thread Jannik Zschiesche
Am Mittwoch, 10. Juli 2013 um 09:54 schrieb Jonathan Matthews: > This is due to you having only one IP listening for ssl traffic. It's a > fundamental limitation of ssl when not used with SNI. > To fix it, you'll need to either use more IPs and listen explicitly on > different ones for different

Re: Wrong server used in SSL request

2013-07-10 Thread Igor Sysoev
On Jul 10, 2013, at 11:40 , Jannik Zschiesche wrote: > Hi everyone, > > I have a rather strange issue. > > I have a server with 3 configured urls: > > example.com (+ ssl) > shop.example.com (+ ssl) > example2.com (- ssl) > > If I now open https://example2.com the server of https://shop.example

Re: Wrong server used in SSL request

2013-07-10 Thread Jonathan Matthews
On 10 Jul 2013 08:41, "Jannik Zschiesche" wrote: > > Hi everyone, > > I have a rather strange issue. > > I have a server with 3 configured urls: > > example.com (+ ssl) > shop.example.com (+ ssl) > example2.com (- ssl) > > If I now open https://example2.com the server of https://shop.example.comis

Re: Wrong server used in SSL request

2013-07-10 Thread Jannik Zschiesche
Hi, sorry, wrong link. Here is the correct one: https://gist.github.com/apfelbox/94c74ab9c515ee906e6b Regards Jannik -- Mit freundlichen Grüßen Jannik Zschiesche Am Mittwoch, 10. Juli 2013 um 09:40 schrieb Jannik Zschiesche: > Hi everyone, > > I have a rather strange issue. > > I have

Wrong server used in SSL request

2013-07-10 Thread Jannik Zschiesche
Hi everyone, I have a rather strange issue. I have a server with 3 configured urls: example.com (+ ssl) shop.example.com (+ ssl) example2.com (- ssl) If I now open https://example2.com the server of https://shop.example.com is used. My config looks like this: https://gist.github.com/apfelbox

Problem with VPN IP address and Nginx

2013-07-10 Thread wolfy
Hi all ! When i use OpenVPN, my remote ip address detected by Nginx (not used on reverse proxy) is different than Apache (standalone, just for test), or http://whatismyipaddress.com, the ip detected by Nginx is my real ip address, not the IP address of my VPN, so i cannot use allow/deny function c