Tom Clancys Ghost Recon Future Soldier free download pc game

2013-03-03 Thread iqbal h.
Tom Clancys Ghost Recon Future Soldier free download pc game Total Size: 1.72 GB proudly presents Tom Clancy’s Ghost Recon: Future Soldier Khyber Strike DLC 03-03-2013……Release Date Protection………..Ubisoft DRM FPS/TPSGame Type Disk(s)……….DLC here http://www.freedownloadfullversioncrack.

Re: Regular expression used in server_name directive

2013-03-03 Thread justin
My bad, stupid mistake, forgot the ^. Working fine now. Thanks. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,236870,236887#msg-236887 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Optimal nginx settings for websockets sending images

2013-03-03 Thread michael.heuberger
Great response Maxim, you're absolutely right here. Will do all that. No further questions :) Cheers Michael Posted at Nginx Forum: http://forum.nginx.org/read.php?2,236601,236885#msg-236885 ___ nginx mailing list nginx@nginx.org http://mailman.nginx

What's the best way to have some kind of state in a custom module?

2013-03-03 Thread Sergey Zhemzhitsky
Hello Nginx Gurus, I'm kind of a newby in nginx plugin development, so trying to understand what's the best way to connect to a proprietary backend system (that provides C API) from within nginx plugin? As far as I understand the best way for such issues is to implement custom upstream proxy m

Re: Regular expression used in server_name directive

2013-03-03 Thread Francis Daly
On Sun, Mar 03, 2013 at 03:16:09PM -0500, justin wrote: Hi there, > server_name ~^(?.+)\.mydomain\.com$; > > Works. Correct. Now compare that line with the server_name lines in the previous mails. > This may be a bug with nginx? No. > The new regular expression is valid and should work. Ye

Re: Regular expression used in server_name directive

2013-03-03 Thread justin
No, simply doing server_name ~^(?.+)\.mydomain\.com$; Works. This may be a bug with nginx? The new regular expression is valid and should work. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,236870,236881#msg-236881 ___ nginx mailing list n

Re: Regular expression used in server_name directive

2013-03-03 Thread Francis Daly
On Sun, Mar 03, 2013 at 02:21:10PM -0500, justin wrote: Hi there, > I actually have a working regular expression which should work now: > >server_name ^(?!web3\.)(?.+)\.mydomain\.com$; http://nginx.org/r/server_name Pay particular attention to the line that begins "It is also possible to u

Re: WildCard domains : how to treat IP Address and Specific Domains differently from Failover/Wildcard Domains ?

2013-03-03 Thread Jonathan Vanasco
> server { >listen 80; >listen IP:80; >server_name example.com; ># site A > } > > server { >listen 80 default_server; ># site B > } > > "listen 80/server_name example.com" route all requests to example.com to > site A. > "listen IP:80" routes all request

Re: Regular expression used in server_name directive

2013-03-03 Thread justin
I need a variable set that I use in the rest of the server {} block. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,236870,236878#msg-236878 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Regular expression used in server_name directive

2013-03-03 Thread Adrián Navarro
Just remove the part and it will act as only matching regex. --Original Message-- From: justin Sender: nginx-boun...@nginx.org To: nginx@nginx.org ReplyTo: nginx@nginx.org Subject: Re: Regular expression used in server_name directive Sent: Mar 4, 2013 04:21 I actually have a working r

Re: Regular expression used in server_name directive

2013-03-03 Thread justin
I actually have a working regular expression which should work now: server_name ^(?!web3\.)(?.+)\.mydomain\.com$; But for some odd reason when I restart nginx, I am getting: nginx: [emerg] unknown "account" variable This should work though, right? Posted at Nginx Forum: http://forum.ngin

Re: Convert Apache rewrite to NGinx

2013-03-03 Thread GASPARD kévin
Le Sun, 03 Mar 2013 19:59:17 +0100, Steve Holdoway a écrit: Why not just use the wp config examples in the docs? Both Wordpress and nginx offer them. Well, I forget to check that... Sorry. Anyway, I've found this: Steve On 4/03/2013, at 7:38 AM, GASPARD kévin wrote: Thanks for yo

Re: Regular expression used in server_name directive

2013-03-03 Thread Francis Daly
On Sun, Mar 03, 2013 at 12:43:57PM -0500, justin wrote: Hi there, > I am using a regular expression with a capture group in my server_name > directive. It looks like: > > server_name (?.+)\.mydomain\.com$ http://nginx.org/r/server_name for details of how the matching server{} block is chose

Re: Convert Apache rewrite to NGinx

2013-03-03 Thread Francis Daly
On Sun, Mar 03, 2013 at 07:38:39PM +0100, GASPARD kévin wrote: Hi there, > >Probably a single extra try_files line will work for you. > This is my new config file : > location ~ \.php$ { > try_files $uri $uri/ /index.php?q=$uri&$args; > } You will probably find

Re: Convert Apache rewrite to NGinx

2013-03-03 Thread Steve Holdoway
Why not just use the wp config examples in the docs? Both Wordpress and nginx offer them. Steve On 4/03/2013, at 7:38 AM, GASPARD kévin wrote: > Thanks for your reply. > >> On Sun, Mar 03, 2013 at 01:52:48PM +0100, GASPARD kévin wrote: >> >> Hi there, >> >>> Using nginx 1.2.1 on Debian Whe

Re: Convert Apache rewrite to NGinx

2013-03-03 Thread GASPARD kévin
Thanks for your reply. On Sun, Mar 03, 2013 at 01:52:48PM +0100, GASPARD kévin wrote: Hi there, Using nginx 1.2.1 on Debian Wheezy 64 bits. My wordpress need rewrite, it gave me this: # nginx configuration location / { if (!-e $request_filename){ rewrite ^(.*)$ /index.php break

Regular expression used in server_name directive

2013-03-03 Thread justin
I am using a regular expression with a capture group in my server_name directive. It looks like: server_name (?.+)\.mydomain\.com$ The problem is that I want to expand it slightly and say anything except web3.mydomain.com. I.E. something.mydomain.com matches, but web3.mydomain.com does no

NginX and Magento very strange problem (?!)

2013-03-03 Thread omolinete
Hello All, This is my first post on the forum, so thank you very much in advance for your attention on my topic. Hope anyone could help me :) The problem we are getting with NginX and Magento, is relating to the download process of files such as PDF, which are in this case invoices. Magento seem

Re: Gzip not compressing response body with status code other than 200, 403, 404

2013-03-03 Thread Bruno Prémont
Hello Maxim, On Sat, 01 September 2012 Maxim Dounin wrote: > On Sat, Aug 25, 2012 at 02:32:02AM -0400, soniclee wrote: > > > I met same problem while try to gzip response with other status code. Any > > update for this issue? > > In some cases it's just not possible to compress > response, e.g

Re: Convert Apache rewrite to NGinx

2013-03-03 Thread Francis Daly
On Sun, Mar 03, 2013 at 01:52:48PM +0100, GASPARD kévin wrote: Hi there, > Using nginx 1.2.1 on Debian Wheezy 64 bits. > > My wordpress need rewrite, it gave me this: > # nginx configuration > > location / { > if (!-e $request_filename){ > rewrite ^(.*)$ /index.php break; > } > }

Re: Brutal Legend free download full version pc game

2013-03-03 Thread iqbal h.
thank easy download just go this link -- Posted via http://www.ruby-forum.com/. ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Brutal Legend free download full version pc game

2013-03-03 Thread iqbal h.
really good site -- Posted via http://www.ruby-forum.com/. ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Brutal Legend free download full version pc game

2013-03-03 Thread iqbal h.
thank you for posting -- Posted via http://www.ruby-forum.com/. ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Brutal Legend free download full version pc game

2013-03-03 Thread iqbal h.
Brutal Legend Brutal Legend (c) Double Fine Prod 02/2013 :….. RELEASE.DATE .. PROTECTION …….: Steam 1 :………. DISC(S) .. GAME.TYPE ……..: Action. Total Size: 7.98 GB here go this link http://www.freedownloadfullversioncrack.com/brutal-legend-free-download-full-version-pc-game/ -- Posted via http://w

Brutal Legend free download full version pc game

2013-03-03 Thread iqbal h.
Brutal Legend free download full version pc game Brutal Legend Brutal Legend (c) Double Fine Prod 02/2013 :….. RELEASE.DATE .. PROTECTION …….: Steam 1 :………. DISC(S) .. GAME.TYPE ……..: Action. Total Size: 7.98 GB here download link http://www.freedownloadfullversioncrack.com/brutal-legend-free-dow

Re: Call of duty black Ops 2 Free Download Pc Game

2013-03-03 Thread iqbal h.
thank i for post -- Posted via http://www.ruby-forum.com/. ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: FastCGI cache has stopped working

2013-03-03 Thread Maxim Dounin
Hello! On Sun, Mar 03, 2013 at 08:02:45AM -0500, Daniel15 wrote: > Maxim Dounin Wrote: > --- > > In ths particular case I would suggest there is another caching > > layer, which results in cached "X-Cache: MISS" being returned. > > Note that

Re: FastCGI cache has stopped working

2013-03-03 Thread Maxim Dounin
Hello! On Sun, Mar 03, 2013 at 07:45:21AM -0500, Daniel15 wrote: > Figured it out. > > The Expires header ("Sun, 3 Mar 2013 13:28:24 GMT") is using a single digit > for the date. If I change the "3" to "03", Nginx works as expected. RFC > 1123 and RFC 822 say that both one- and two-digit numbe

Re: FastCGI cache has stopped working

2013-03-03 Thread Daniel15
Maxim Dounin Wrote: --- > In ths particular case I would suggest there is another caching > layer, which results in cached "X-Cache: MISS" being returned. > Note that Expires and Last-Modified are the same, and > X-ExecutionTime headers match

Re: FastCGI cache has stopped working

2013-03-03 Thread Maxim Dounin
Hello! On Sun, Mar 03, 2013 at 07:32:05AM -0500, Daniel15 wrote: > Nginx's FastCGI caching used to work perfectly for me, but recently it > stopped working and I can't work out why. > > This is how the headers look: > HTTP/1.1 200 OK > Server: nginx/1.2.7 > Date: Sun, 03 Mar 2013 12:28:24 GMT >

Convert Apache rewrite to NGinx

2013-03-03 Thread GASPARD kévin
Hi, Using nginx 1.2.1 on Debian Wheezy 64 bits. My wordpress need rewrite, it gave me this: RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] I've tried to convert it with this

Re: FastCGI cache has stopped working

2013-03-03 Thread Daniel15
Figured it out. The Expires header ("Sun, 3 Mar 2013 13:28:24 GMT") is using a single digit for the date. If I change the "3" to "03", Nginx works as expected. RFC 1123 and RFC 822 say that both one- and two-digit numbers are valid, so this is a bug in Nginx's caching. I'll report it to the bug

Re: 502 bad gateway error with php5-fpm on Debian 7

2013-03-03 Thread GASPARD kévin
Hi, I've solved my issue, I've moved all wordpress file into the document root of blog.koshie.fr, modified it into /etc/nginx/conf.d/blog.koshie.fr.conf according to my new structure and now it works. Again thanks :). Le Sat, 02 Mar 2013 20:14:55 +0100, GASPARD kévin a écrit: Well, i

FastCGI cache has stopped working

2013-03-03 Thread Daniel15
Nginx's FastCGI caching used to work perfectly for me, but recently it stopped working and I can't work out why. This is how the headers look: HTTP/1.1 200 OK Server: nginx/1.2.7 Date: Sun, 03 Mar 2013 12:28:24 GMT Content-Type: text/html; charset=utf-8 Content-Length: 10727 Connection: keep-aliv

Re: Optimal nginx settings for websockets sending images

2013-03-03 Thread Maxim Dounin
Hello! On Fri, Mar 01, 2013 at 11:54:06PM -0500, michael.heuberger wrote: > thank you so much maxim > > i have read the documentation at > http://nginx.org/en/docs/http/ngx_http_proxy_module.html and am trying to > understand all that. it's not easy ... > > i'm serving video files (mp4 or webm)

Re: How can nginx reverse proxy google app engine via SPDY?

2013-03-03 Thread Andrew Alexeev
On Mar 3, 2013, at 10:58 AM, 张沈鹏 wrote: > I write this and it success proxyed , but I want to let the proxy use SPDY > there is no how to use SPDY in revese proxy in the document There's not SPDY for upstream servers in nginx at this time, so you can't. > server{ > listen 443; > se