Valentin V. Bartenev Wrote: ------------------------------------------------------- > On Monday 16 December 2013 08:08:31 kustodian wrote: > > Hi, > > > > Nginx 1.4.0 added support for SPDY to the stable version, so my > question is > > why is SPDY not enabled in the packages from the Nginx official > repository? > > > > I'm explicitely talkby meto - Nginx Mailing List - English
Can't wait to see that feature in mainline (dev or stable). It's one that was bugging me about the license used by current one (commercial use). Are you planning to include it in your repo packages?by meto - Nginx Mailing List - English
It'd be nice to have symlinks for other flavors of RHEL, such as SL (Scientyfic Linux) and CL (Cloud Linux). They should work as RHEL or CentOS, but .list file must be modified.by meto - Nginx Mailing List - English
Hi, I'd really like to see similar queue mechanism in limit_conn such as in limit_req_rate with burst + delay option. What it really does is wait before throwing an 503 error before queue reaches certain number (allowed burst). That behavior would be more than welcome since not always reaching max conn limit is so bad. If it's 1 connection for a fraction of second ant guest gets 503 he can go aby meto - Ideas and Feature Requests
Thanks that works good. It's by design guest cache controlled by cookie 'imloggedin'=1 So even if cookies are set it's ok to be public. PS. I was relying on wiki since there is no english documentation. Could you please make english docs as much up to date as russian?by meto - Nginx Mailing List - English
I figured out that it must be something with headers. Does anybody knows why nginx ignores cache with those headers? Server nginx/0.8.53 Date Fri, 22 Oct 2010 10:16:28 GMT Content-Type text/html; charset=ISO-8859-2 Connection keep-alive X-Powered-By PHP/5.3.3 X-Pingback http://ls2009.eu/vbseo-xmlrpc/ Set-Cookie bb_lastvisit=1287437336; expires=Sat, 22-Oct-2011 10:16:28 GMT; path=/; domaby meto - Nginx Mailing List - English
Hi, I'm trying to build similar configuration to this one (http://www.vbulletin.com/forum/entry.php?2440-vB4Mance-Part-5-Expert-Level-Boosting-vBulletin-Performance-with-Advanced-Caching) but using nginx. Aparently there is no problem caching static files and php generated css, but websites itselves dont cache. Here is part config of proxy: proxy_pass http://ip:78; proxy_by meto - Nginx Mailing List - English
I know this subject was brought up by many others, but i'd like to make an official request for this feature. The disability of using keep-alives with backends is a little bit disturbing and it would be grate to do so. Igor, are you planning to introduce this functionality in the closest future? Or is there something more exciting that you plan to add? :) Regards Maciekby meto - Nginx Mailing List - English
Yes I understand that and thanks for help anyhow :) Why does "try_files $uri $uri/index.php @backend;" won't work?by meto - Nginx Mailing List - English
Igor, unfortunately, your config doesn't work as expected. I'm using this config right now and it works for me: location / { index index.html index.htm index.php; try_files $uri $uri/ @proxy_backend; } location ~ ^(.+\.php)(.*)$ { try_files $uri @proxy_backend; fastcgi_pass php;by meto - Nginx Mailing List - English
Somehow i managed to make this work: location / { index index.html index.htm index.php; try_files $uri $uri/ @proxy_backend; } But i think that it should work with: location / { try_files $uri $uri/index.php @proxy_backend; }by meto - Nginx Mailing List - English
this rewrite looks ok, could you show whole server{} config?by meto - Nginx Mailing List - English
location /weblog/ { rewrite ^/(.*)$ /blog/$1 permanent; } That should work.by meto - Nginx Mailing List - English
I'm trying to set a reverse proxy for some time now and i'm out of ideas... index index.html index.htm index.php; location / { try_files $uri @proxy_backend; } location ~ ^(.+\.php)(.*)$ { error_page 404 /errors_pages/404.html; fastcgi_pass php; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_iby meto - Nginx Mailing List - English
Xuepeng Li Wrote: ------------------------------------------------------- > my quest is: > > if every request needs to get dynamic conetent(not > static file, image, css > ...), nginx has to proxy the request to backend > apache server. in this > circumstance, if all apache server process have > been occupied, then > following requests have to wait until a apby meto - Nginx Mailing List - English
There is a module for that: http://wiki.nginx.org/Nginx3rdPartyModules#EY_Balancer_Module But, personally i haven't tried it. Some time ago i used nginx+haproxy for queue handling.by meto - Nginx Mailing List - English
You can try also my repo https://launchpad.net/~meto/+archive/nconfig/ additionally i've got PHP with PHP-FPM. In free time i'm working on PHP 5.3by meto - Nginx Mailing List - English
> Yes, separate normal locations or nested ones is > the way to go. > > Maxim Dounin I read documentation for further details and that's what i found: if: "Checks the truth of a condition. If the condition evaluates to true, then the code indicated in the curly braces is carried out and the request is processed in accordance with the configuration within the following blby meto - Nginx Mailing List - English
server { listen 94.23.96.82:80; server_name gimpuj.info www.gimpuj.info gimpuj.org www.gimpuj.org gimpuj.net www.gimpuj.net; if ($host != www.gimpuj.info) { rewrite ^(.*)$ http://www.gimpuj.info$1 permanent; } access_log /var/www/vhosts/gimpuj.info/statisticby meto - Nginx Mailing List - English
One other thing - my config was working correctly till 0.7.60by meto - Nginx Mailing List - English
aparently THIS IS A JPEG... I look through some others coredups and its always images treated as a php and passed to PHP. Strangely enough this seams to be killing nginx not php processes. So i think we've nailed the problem, i'll wait 24h to se if everything is ok and report here. But this should rise discussion about recognition of php files by nginx and $fastcgi_script_name doesnt do theby meto - Nginx Mailing List - English
I have my candidate for this failure. To enable php for many directories in a domain with different root dirs i use if for php not sugested location. By the way it's grate and take me a while to figure ;) #php support if ( $request_filename ~* \.php(.*)$ ) { # is it php? fastcgi_pass 127.0.0.1:9000; expires off; } fastcgi_index index.php; fastcgi_paby meto - Nginx Mailing List - English
fr 2 #2 0x000000000049386d in ngx_http_fastcgi_handler (r=0x9d94f0) at src/http/modules/ngx_http_fastcgi_module.c:600 600 src/http/modules/ngx_http_fastcgi_module.c: No such file or directory. in src/http/modules/ngx_http_fastcgi_module.c p *r (gdb) p *r $1 = {signature = 1347703880, connection = 0x845128, ctx = 0x730970, main_conf = 0x767de8, srv_conf = 0xa07d28, loc_coby meto - Nginx Mailing List - English
Not yet, Grzogorz didn't write to me anything so it's still open discussion...by meto - Nginx Mailing List - English
Skoro i tak rozmowa jest miedzy nami, to postaramy się to ogarnąć przez maila, jabber albo gg a później feedback wrzuci się na mailingliste. Mail/JID : meto@xgame.pl gg:1701610 --- Since it's conversation between me and you, we could cope with this through mail or communicator and then put some feedback here? Mail/JID : meto@xgame.pl gg:1701610. Regards Maciekby meto - Nginx Mailing List - English
This part I have added recently, but as I recall it wasn't parallel to this bug(?). #anti-slowloris client_body_timeout 10; client_header_timeout 10; keepalive_timeout 10; keepalive_requests 250; send_timeout 10; limit_zone limit_per_ip $binary_remote_addr 1m; #end slowloris #cache for performance? open_file_cache max=1000 inactive=20s; open_file_cache_valid 30s;by meto - Nginx Mailing List - English
(gdb) p *u $1 = {read_event_handler = 0, write_event_handler = 0, peer = {connection = 0x0, sockaddr = 0x0, socklen = 0, name = 0x0, tries = 0, get = 0, free = 0, data = 0x0, set_session = 0, save_session = 0, rcvbuf = 0, log = 0x8a23a0, cached = 0, log_error = 1}, pipe = 0x6f7098, request_bufs = 0x76a380, output = {buf = 0x0, in = 0x0, free = 0x0, busy = 0x0, sendfile = 0, directio = 0by meto - Nginx Mailing List - English
Ok, grate! Without dh_strip package weighs 14MB and current coredumps became readable. Here it is: warning: .dynamic section for "/usr/lib/libcrypto.so.0.9.8" is not at the expected address (wrong library or version mismatch?) Reading symbols from /lib/libcrypt.so.1...done. Loaded symbols for /lib/libcrypt.so.1 Reading symbols from /usr/lib/libpcre.so.3...done. Loaded symbols forby meto - Nginx Mailing List - English
good old ab from apache dev?by meto - Nginx Mailing List - English
I've read a while about manual instalation and have a little question: Are there methods implemented in make to execute "make uninstall"? Would it be safe/posible to overwrite those files from package after debuging?by meto - Nginx Mailing List - English