Its this duty to inform you many abilities regarding diverse number of Nike shoes or boots

2013-11-05 Thread zither
High priced black-jack shoe? How much time do everyone have on? Exactly how generally can you rinse these individuals? The best way do everyone rinse? Right after washiing do you find it just like while brand new? Frequently I acquired coorespondence related to these kinds of doubts. Being a news r

Re: multiple ssl certificates within single server {} block

2013-11-05 Thread Tim Düsterhus
On 05.11.2013 17:51, Richard Kearsley wrote: > would it work like this (an include in an include?) Did you try it? ;) Yes it does work. Debian by default uses a folder /etc/nginx/sites-enabled for all vHosts / domains. You can easily include any file in there via: include /etc/nginx/sites-en

Re: Support for relative URL in Location header

2013-11-05 Thread Maxim Dounin
Hello! On Tue, Nov 05, 2013 at 08:30:42AM -0800, Jeroen Ooms wrote: > On Mon, Nov 4, 2013 at 5:08 PM, Maxim Dounin wrote: > > The proxy_redirect directive does string replacement, not URI > > mapping. If you want it to replace "/two/" with "/one/", you can > > configure it to do so. It's just

Re: multiple ssl certificates within single server {} block

2013-11-05 Thread Richard Kearsley
On 05/11/13 16:27, Tim Düsterhus wrote: This sounds like you want to use `include`, i use it myself for general settings, valid for any domain: fair point would it work like this (an include in an include?) http { include www.example.com.conf; include www.test.com.conf; include ww

Re: multiple ssl certificates within single server {} block

2013-11-05 Thread Tim Düsterhus
On 05.11.2013 14:57, Richard Kearsley wrote: > this could go on for 100's of domains... This sounds like you want to use `include`, i use it myself for general settings, valid for any domain: server { listen 443 ssl; include /etc/nginx/ssl-common.conf; ssl_certificate

Re: Support for relative URL in Location header

2013-11-05 Thread Jeroen Ooms
On Mon, Nov 4, 2013 at 5:08 PM, Maxim Dounin wrote: > The proxy_redirect directive does string replacement, not URI > mapping. If you want it to replace "/two/" with "/one/", you can > configure it to do so. It's just not something it does by > default. Exactly. I was trying to argue that it pr

Re: Define a proxy for Nginx

2013-11-05 Thread António P . P . Almeida
No you don't. It's a server config. It will set the same global as the Apache env thing AFAIK. appa On Tue, Nov 5, 2013 at 4:35 PM, odesport wrote: > Thanks, but with fastcgi_param I have to modify PHP code. > > Posted at Nginx Forum: > http://forum.nginx.org/read.php?2,244407,244462#msg-

Re: Define a proxy for Nginx

2013-11-05 Thread odesport
Thanks, but with fastcgi_param I have to modify PHP code. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,244407,244462#msg-244462 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Define a proxy for Nginx

2013-11-05 Thread António P . P . Almeida
Assuming you're using php-fpm or php-cgi you can set a param to pass that as a server variable: fastcgi_param HTTP_PROXY 'http://proxy:myport'; Then you'll have a $_SERVER['HTTP_PROXY'] entry for the global $_SERVER. HTH, appa On Mon, Nov 4, 2013 at 3:09 PM, odesport wrote: > I can't m

Re: multiple ssl certificates within single server {} block

2013-11-05 Thread Richard Kearsley
On 05/11/13 13:50, Jonathan Matthews wrote: Please show a duplicated (i.e. operationally inefficient) config that you wish to aggregate, as I don't understand the result you're aiming for. J something like this is the only way I see to do it currently: http { server { listen 8

Re: multiple ssl certificates within single server {} block

2013-11-05 Thread Jonathan Matthews
On 5 November 2013 13:30, Richard Kearsley wrote: > Hi > > I was wondering if there's any way to have a configuration like this? > > server > { > listen 80; > listen 443 ssl; > > ssl_certificate www.example.com.cer; > ssl_certificate_key www.example.com.

multiple ssl certificates within single server {} block

2013-11-05 Thread Richard Kearsley
Hi I was wondering if there's any way to have a configuration like this? server { listen 80; listen 443 ssl; ssl_certificate www.example.com.cer; ssl_certificate_key www.example.com.key; ssl_certificate www.test.com.cer; ssl_certif

Re: Define a proxy for Nginx

2013-11-05 Thread Jonathan Matthews
On 4 November 2013 14:09, odesport wrote: > I can't modify PHP code. I've managed to do this for Apache by adding the > line > > export http_proxy="http://myproxy:port"; > > in /etc/apache2/envvars Glad to hear you've solved your problem :-) J ___ ngi