On Wed, Apr 15, 2009 at 09:06:14PM +0200, Robert Gabriel wrote: > Robert Gabriel wrote: > > Blocking an Ip address should be done like this?! > > > > Allow from all > > Deny from 59.56.109.34 > > > > Thanks! > > Sorry, I mean: > > location / { > allow all; > deny 59.56.109.34; > ... > } No, nginx stops atby Igor Sysoev - Nginx Mailing List - English
On Wed, Apr 15, 2009 at 02:31:44PM -0400, SSSlippy wrote: > If I remember correctly u can not have more then one server config with the same port in the same config file. Give each URL it's own file using vhosts. There is an example in the wiki. No, this is a valid configuration. -- Igor Sysoev http://sysoev.ru/en/by Igor Sysoev - Nginx Mailing List - English
On Wed, Apr 15, 2009 at 12:53:57PM -0400, mikew wrote: > Hey All, > > We're extremely happily using nginx 0.5.blah for much hosting. > 0.5.x isn't broke, so we have no plans to "fix" it in the forseable future. However, we have a good use for gzip_static, so have to move to 0.6.x for some servers. > > I'm having trouble converting our config style from 0.5.x tby Igor Sysoev - Nginx Mailing List - English
On Wed, Apr 15, 2009 at 10:10:07AM -0700, Michael Nachbaur wrote: > I'm developing a web application that makes heavy use of nginx's XSLT > support (Thank you for that!) About half of the content is in static > XML files that describes the application's state. But when people > click on and interact with the forms and links on the page, those make > calls to URLs whby Igor Sysoev - Nginx Mailing List - English
On Wed, Apr 15, 2009 at 10:30:05AM -0700, Michael Shadle wrote: > this would be a neat feature and i could possibly leverage it too, > depending on how fast nginx's xsl transforms work. i assume pretty > fast. :) No faster than libxml2/libxslt. > On Wed, Apr 15, 2009 at 10:10 AM, Michael Nachbaur <mike@nachbaur.com> wrote: > > I'm developing a web application thby Igor Sysoev - Nginx Mailing List - English
On Mon, Apr 13, 2009 at 12:56:29PM +0930, Kingsley Foreman wrote: > Hi guys, > > Just wondering what you guys are using for centralized logging of access > logs for multiple servers. I'm thinking about using the syslog patch but I > was wondering if anyone was using anything they think is better? And has > piping of log files been implemented in the newer versions?by Igor Sysoev - Nginx Mailing List - English
On Sun, Apr 12, 2009 at 06:40:48PM +0800, howard chen wrote: > In the website it said it support PUT, DELETE, MKCOL, COPY and MOVE methods; > > So it that mean nginx support webdav? No. nginx supports the limited subset only. -- Igor Sysoev http://sysoev.ru/en/by Igor Sysoev - Nginx Mailing List - English
Changes with nginx 0.7.51 12 Apr 2009 *) Feature: the "try_files" directive supports a response code in the fallback parameter. *) Feature: now any response code can be used in the "return" directive. *) Bugfix: the "error_page" directive made an external redirect without query string; the bby Igor Sysoev - Nginx Mailing List - English
On Fri, Apr 10, 2009 at 04:48:25AM -0400, yangguangli wrote: > ????????????????????? No. -- Igor Sysoev http://sysoev.ru/en/by Igor Sysoev - Nginx Mailing List - English
On Thu, Apr 09, 2009 at 04:52:39PM -0700, Edward Stow wrote: > > Hi, > > AFAICT nginx does not support nested ssi statement: Is this correct -- or am I doing something wrong. > > <html> > <head></head> > <body> > <!--# include file="header.html.inc --> > </body> > </html> > > header.html.inc coby Igor Sysoev - Nginx Mailing List - English
On Thu, Apr 09, 2009 at 04:54:27AM -0400, davidc wrote: > Thanks for the speedy nginx and speedy reply Igor. > > The $status value does indeed log the 200 response. > > Is it possible to configure nginx to return custom http status codes? > > e.g. use a 299 and 298 code that are interpreted as a 200 OK by a custom > http client. The last two digits would signalby Igor Sysoev - Nginx Mailing List - English
On Fri, Apr 10, 2009 at 04:09:20PM +0800, Laurent Thevenet wrote: > unsubscribe nginx lthevenet@gmail.com You need to send to the nginx-REQUEST ... -- Igor Sysoev http://sysoev.ru/en/by Igor Sysoev - Nginx Mailing List - English
On Thu, Apr 09, 2009 at 12:38:47AM -0400, iravana wrote: > All, > > I am trying to proxy a PROPFIND request to a webdav server. So essentially I am trying to send any requests made to https://localhost/webdav to another server https://my.webdavserver.com. I tried to do this by setting up a proxy like this: > > location /webdav/ { > proxy_pass https://by Igor Sysoev - Nginx Mailing List - English
On Thu, Apr 09, 2009 at 02:27:15PM -0500, Resicow wrote: > Hi Igor (and everyone else), > > I had a few quick questions about the new proxy_cache feature, and I > apologize if they have already been answered. > > 1) What about query_strings? Does proxy_cache ignore or include > query_strings? Is there a way to have it ignore query_strings in the URL? By defaultby Igor Sysoev - Nginx Mailing List - English
On Thu, Apr 09, 2009 at 08:56:59PM -0400, sdotsen wrote: > I'm running Oracle Collab Suite on port 7777 and 7778. Oracle installed its own Apache and hacking it has proven to be difficult. For one thing, I can't seem to get VirtualHost to work correctly. Since it doesnt use port 80 by default, I decided to put nginx in front of it. I managed to proxy pass port 80 to 7778. However, it doesntby Igor Sysoev - Nginx Mailing List - English
On Fri, Apr 10, 2009 at 10:24:59AM +0800, Delta Yeh wrote: > I use the following config: > > server { > listen 192.168.1.102:80; > listen 192.168.1.102:81; > > server_name _; #default > return 444; > } > > #upstream cfg > upstream web_upstream0 { > server 192.1by Igor Sysoev - Nginx Mailing List - English
On Thu, Apr 09, 2009 at 10:24:12PM -0700, Michael Shadle wrote: > i'd like to do something like: > > server { > listen 80; > server_name *.user.foo.com; server_name ~^(.+)\.user\.foo\.com$; > root /home/user/web/$1; > } > > this would be basically required too: > > server { > listen 80; > server_name *.user.foo.com;by Igor Sysoev - Nginx Mailing List - English
On Wed, Apr 08, 2009 at 11:41:43PM -0400, davidc wrote: > I'm testing the embedded perl module. Is it possible to log the return value? > > i.e. can I set $return to capture the return value of the handler in this example? > > log_format main 'Return value is $return'; > > access_log /path/to/access.log main; > > server { > location / { >by Igor Sysoev - Nginx Mailing List - English
On Wed, Apr 08, 2009 at 11:16:30AM +0000, Glen Lumanau wrote: > How about jpg, css, js or any other files? No problems with these files. Actually, there are no problems with flv itself. The issue is when you want to get /some.flv?start=5000. However, it seems flv handler can be converted easy enough to filter. > ------Original Message------ > From: Igor Sysoev > Sender: owby Igor Sysoev - Nginx Mailing List - English
On Wed, Apr 08, 2009 at 10:51:59AM +0800, ???? wrote: > Dear Igor, > > Then, how to use proxy_cache WITH flv streaming? > I tried proxy_cache feature, but it seems that the flv streaming function does not work with proxy_cache. No, flv is not filter, but handler, thefore it's not possible. -- Igor Sysoev http://sysoev.ru/en/by Igor Sysoev - Nginx Mailing List - English
On Wed, Apr 08, 2009 at 10:47:16AM +0300, Artis Caune wrote: > 2009/4/7 Deepan Chakravarthy <codeshepherd@gmail.com>: > > Hi, > >by Igor Sysoev - Nginx Mailing List - English
On Tue, Apr 07, 2009 at 05:04:40PM +0200, Daniele Melosi wrote: > Hi all, > > I've the following location configuration that doesn't work as expected > (i symplified my configuration with return value instead of rewrite): > > location ^~ /image/ { > location ^~ /image/(halfcol|medium|thumb)/ { > return 402; > } > location ^~ /image/ { >by Igor Sysoev - Nginx Mailing List - English
On Tue, Apr 07, 2009 at 12:55:37AM -0700, Payam Chychi wrote: > On Mon, Apr 6, 2009 at 11:03 PM, Payam Chychi <pchychi@gmail.com> wrote: > > thank you sir =) you are a king! > > > > -Payam > > > > 2009/4/6 Igor Sysoev <is@rambler-co.ru>: > >> On Mon, Apr 06, 2009 at 10:46:24PM -0700, Payam Chychi wrote: > >> > >>>by Igor Sysoev - Nginx Mailing List - English
On Mon, Apr 06, 2009 at 07:45:14PM +0200, Micha?? Jaszczyk wrote: > > No, a request body is saved to a disk only if it is larger than > > client_body_buffer_size: > > > > http://wiki.nginx.org/NginxHttpCoreModule#client_body_buffer_size > > Wow, good to know :). How bad would it be to set it to, say, 50MB? > Let's assume that memory consumption is not anby Igor Sysoev - Nginx Mailing List - English
On Mon, Apr 06, 2009 at 10:46:24PM -0700, Payam Chychi wrote: > 2009/4/6 Igor Sysoev <is@rambler-co.ru>: > > On Mon, Apr 06, 2009 at 10:14:36PM -0700, Payam Chychi wrote: > > > >> Hi Guys, > >> > >> I was hoping someone could point out a document where it can teach me > >> how to setup nginx + caching. I know that traditionally nginby Igor Sysoev - Nginx Mailing List - English
On Mon, Apr 06, 2009 at 10:14:36PM -0700, Payam Chychi wrote: > Hi Guys, > > I was hoping someone could point out a document where it can teach me > how to setup nginx + caching. I know that traditionally nginx did not > have a native caching and it required you to run ncache or cachemem in > order to perform caching of static content... but does nginx now allow > baby Igor Sysoev - Nginx Mailing List - English
On Mon, Apr 06, 2009 at 05:45:09PM +0200, Micha?? Jaszczyk wrote: > > As far as I know nginx cannot pipe a request into upstream, since probably there was no intention initially to do like this. Moreover it is not trivial to implement from my point of view. > > Does it mean that every POST request is saved to disk before it's > forwarded to a backend? If this is the case thenby Igor Sysoev - Nginx Mailing List - English
Changes with nginx 0.7.50 06 Apr 2009 *) Bugfix: the $arg_... variables did not work; the bug had appeared in 0.7.49. -- Igor Sysoev http://sysoev.ru/en/by Igor Sysoev - Nginx Mailing List - English
On Mon, Apr 06, 2009 at 03:42:57PM +0400, Maxim Dounin wrote: > Hello! > > On Mon, Apr 06, 2009 at 03:30:54PM +0400, Maxim Dounin wrote: > > > Hello! > > > > On Mon, Apr 06, 2009 at 02:45:18PM +0400, Igor Sysoev wrote: > > > > > Changes with nginx 0.7.49 06 Apr 2009 > > > > > >by Igor Sysoev - Nginx Mailing List - English
Changes with nginx 0.7.49 06 Apr 2009 *) Change: a segmentation fault might occur in worker process, if the $arg_... variables were used; the bug had appeared in 0.7.48. -- Igor Sysoev http://sysoev.ru/en/by Igor Sysoev - Nginx Mailing List - English
![]() |
![]() |
![]() |
![]() |
![]() |