Re: How to make proxy revalidate resource at origin

2013-09-27 Thread itpp2012
Maybe via Lua? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,243204,243211#msg-243211 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: [ANNOUNCE] nginx-http-rdns module

2013-09-27 Thread itpp2012
Here's a fix for a typo; ngx_http_rdns_module.c -l709 static void dns_handler(ngx_resolver_ctx_t * rctx) {; +l709 static void dns_handler(ngx_resolver_ctx_t * rctx) { Posted at Nginx Forum: http://forum.nginx.org/read.php?2,243191,243213#msg-243213 __

Re: Solving a 500 error

2013-10-02 Thread itpp2012
Sounds familiar, edit files elsewhere and overwrite them for nginx's destination, any basic editor has macro support, just make a macro that does a copy after save. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,24,243371#msg-243371 ___ n

[ANN] Windows nginx 1.5.6.4 Butterfly

2013-10-02 Thread itpp2012
12:38 2-10-2013: nginx 1.5.6.4 Butterfly The Nginx 'Butterfly' release brings to Windows stable and unleashed power of Nginx, Lua, Streaming feature, Reverse DNS, SPDY, easy c250k in a non-blocking and event driven build which runs on Windows XP SP3 or higher, both 32 and 64 bit. Based on nginx

Re: How to disable output buffering with PHP and nginx

2013-10-07 Thread itpp2012
Have you seen this one; http://stackoverflow.com/questions/8882383/how-to-disable-output-buffering-in-php Also try php NTS, it might also be that a flush only works with non-fcgi. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,242895,243487#msg-243487 _

Re: How to disable output buffering with PHP and nginx

2013-10-10 Thread itpp2012
> Correct. One nginx process can handle multiple requests, it's one > PHP process which limits you. Not really, use the NTS version of php not the TS, and use a pool as suggested, e.a.; # loadbalancing php upstream myLoadBalancer { server 127.0.0.1:19001 weight=1 fail_timeout=5

Accessing binding nginx via Lua

2013-10-15 Thread itpp2012
Would it be possible (and how) to access the bindings inside nginx via Lua? for an experiment I'd like to change the listening port of a running nginx process. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,243705,243705#msg-243705 ___ nginx

Re: Accessing binding nginx via Lua

2013-10-15 Thread itpp2012
Maxim Dounin Wrote: --- > In most cases, workers just can't open listening sockets due to security restrictions. I'd still like to try, can you point me where a worker binds to the inherited values? Posted at Nginx Forum: http://forum.nginx.org

-s reload does not update logfiles time, v1.5.6

2013-11-02 Thread itpp2012
A -s reload works as documented, however while the logfiles are being written to, the logfiles keep their last (before -s) time/date. Is this a known issue? After a simple restart the logfiles are time updated as normal. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,244372,244372#msg-

Re: sidebar menu + directory listing

2013-11-14 Thread itpp2012
ge...@riseup.net Wrote: --- > maybe I'll just write a small script using tree -H to output a > directory listing into static html, and serve this just as html. > Clever doing it like this? http://wiki.nginx.org/NgxFancyIndex Posted at Nginx

[ANN] Windows nginx 1.5.7.1 Caterpillar

2013-11-16 Thread itpp2012
=== Transforming nginx for Windows === 12:22 16-11-2013: nginx 1.5.7.1 Caterpillar The nginx 'Caterpillar' is a "you are no longer in Kansas Alice" *MONSTER* release bringing to Windows full scalability with multiple workers! This native build runs on Windows XP SP3 and higher, both 32 and 64 bit

Re: Is there a compile version NGINX RTMP for Windows

2013-11-26 Thread itpp2012
Here is one with rtmp(1.06) compiled in, http://nginx-win.ecsds.eu/ rtmp 1.07 upgrade is on the todo list for the next release. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,244990,245000#msg-245000 ___ nginx mailing list nginx@nginx.org htt

Re: Is there a compile version NGINX RTMP for Windows

2013-11-27 Thread itpp2012
Follow the github pages, plenty of examples; https://github.com/arut/nginx-rtmp-module Posted at Nginx Forum: http://forum.nginx.org/read.php?2,244990,245007#msg-245007 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/ng

Re: NGINX 500 http error

2013-11-28 Thread itpp2012
Note: --add-module=../naxsi... should be the first one. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,244693,245053#msg-245053 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

[ANN] Windows nginx 1.5.8.1 Caterpillar

2013-11-30 Thread itpp2012
19:18 30-11-2013: nginx 1.5.8.1 Caterpillar Based on nginx 1.5.8 (29-11-2013) with (mainly bugfixes in add-on's); + Naxsi WAF (Web Application Firewall) v0.53-1 (upgraded) + lua-nginx-module v0.9.2 (upgraded 30-11) + Streaming with nginx-rtmp-module, v1.0.8 (upgraded 29-11) + Source changes back p

[Patch] possible mutex starvation issue affects all nginx Linux versions.

2013-12-02 Thread itpp2012
Here is a patch for a possible mutex starvation issue which affects all nginx Linux versions. Already solved for Windows since nginx 1.5.7.1 Caterpillar. Can be reproduced when nginx reloads the config & worker holding mutex dies or hangs. Fixed by Vittorio Francesco Digilio, commercially sponsere

Re: RE: [ANN] Windows nginx 1.5.8.1 Caterpillar

2013-12-03 Thread itpp2012
> Here is an error occurred if I run "nginx -t" in Windows CLI when the > nginx server is in running, > > The tips always is the same: "Assertion failed: > ngx_shared_sockets->pid==pid, file src/core/nginx.c, line 374" This is because you are running nginx.exe as a different user then nginx.exe i

Re: RE: [ANN] Windows nginx 1.5.8.1 Caterpillar

2013-12-03 Thread itpp2012
> And please try to compile a version with this module: > http://wiki.nginx.org/HttpSubsModule There a beta you can try, nginx 1.5.8.2 Caterpillar BETA1.zip which includes https://github.com/yaoweibin/ngx_http_substitutions_filter_module which I had to port a little bit (2 bugs) Posted at Nginx F

Re: RE: [ANN] Windows nginx 1.5.8.1 Caterpillar

2013-12-04 Thread itpp2012
> Please kindly look further for the reason. Thank you. A new beta you can try, nginx 1.5.8.2 Caterpillar BETA2.zip + Fix for nginx -t 'Assertion failed' issue + HttpSubsModule * The debug version is no longer needed, Intel static profiler data is used nginx crash info/logging or event dump info

Re: dummy question...

2013-12-05 Thread itpp2012
In some cases you have no choice then use root inside location (like different roots for different requests in 1 block or a dynamic root for a dynamic request) so when you know what your doing its not a bad thing. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,245260,245261#msg-245261

[ANN] Windows nginx 1.5.8.2 Caterpillar

2013-12-06 Thread itpp2012
'Keep Up' Windows nginx fan base :) Over 2.000 downloads, lots of Beta feedback, we ain't done yet, here's the latest and greatest version. 15:34 6-12-2013: nginx 1.5.8.2 Caterpillar Based on nginx 1.5.8 (5-12-2013) with; + Fix for nginx -t 'Assertion failed' issue + HttpSubsModule (https://gith

Re: Maintenance mode for all but my ip

2013-12-07 Thread itpp2012
Full working config; http://www.cyberciti.biz/faq/custom-nginx-maintenance-page-with-http503/ Posted at Nginx Forum: http://forum.nginx.org/read.php?2,245306,245316#msg-245316 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/list

Re: Nginx FastCGI cache for vBulletin

2013-12-09 Thread itpp2012
Try xcache, since VB is a php application which will run via php-cgi, its easy to add xcache. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,245340,245342#msg-245342 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/list

Re: [Patch] possible mutex starvation issue affects all nginx Linux versions.

2013-12-11 Thread itpp2012
>From the patch author: Hi Maxim, I apologize for my late reply: I just had now time to sort this out. The short answer to your remarks is: the first patch is partially correct, just incomplete, and could be easily completed with the addition of a call to ngx_disable_accept_events(...) addressin

new ngx_resolver changes breaks modules

2013-12-14 Thread itpp2012
While back porting ngx_resolver changes by Ruslan Ermilov I get these errors: error C2039: 'type' : is not a member of 'ngx_resolver_ctx_s' error C2440: '=' : cannot convert from 'ngx_addr_t' to 'ULONG' Has this been intentional or did a glitch happened throughout the changes ? Posted at Nginx F

[ANN] Windows nginx 1.5.8.3 Caterpillar

2013-12-18 Thread itpp2012
19:46 18-12-2013: nginx 1.5.8.3 Caterpillar Based on nginx 1.5.8 (release) with; + prove.zip (onsite), a Windows Test_Suite way to show/prove it all really works with at the moment a limited amount of tests which will grow over time + Streaming with nginx-rtmp-module, v1.0.8 (upgraded 16-12) + pcr

Re: [PATCH] SPDY: support for SPDY v3

2013-12-25 Thread itpp2012
fred Wrote: --- > This patch can use with google's pagespeed. > The API for resolver has changed, see; https://github.com/chaoslawful/lua-nginx-module/commit/f364c82039d8d76efa0767a7fd909935d5c40a65 for code that fixes this for pre 1.5.8 and pos

Re: OT: OpenSSL 1.0.1f

2014-01-07 Thread itpp2012
1.0.1f against 1.5.9 mainline (today); ecp_nistputil.obj : warning LNK4221: This object file does not define any previously undefined public symbols, so it will not be used by any link operation that consumes this library ecp_nistp521.obj : warning LNK4221: This object file does not define any pr

Re: OT: OpenSSL 1.0.1f

2014-01-08 Thread itpp2012
itpp2012 Wrote: --- > 1.0.1f against 1.5.9 mainline (today); > > .\ssl\s23_clnt.c(286) : warning C4244: 'initializing' : conversion > from 'time_t' to 'unsigned long', possible loss of data

Re: OT: OpenSSL 1.0.1f

2014-01-09 Thread itpp2012
Aidan Scheller Wrote: --- > Does using the --with-openssl-opt="enable-ec_nistp_64_gcc_128" > configure parameter without the *--with-openssl *cause a static > version of > OpenSSL to be created for Nginx? I'm unsure as the configuration > summar

[ANN] Windows nginx 1.5.9.1 Cheshire

2014-01-10 Thread itpp2012
14:05 10-1-2014: nginx 1.5.9.1 Cheshire When she sleeps she gently purrs, you hardly know she's there, but when she wakes you're gonna hear her roar. nginx Cheshire release is here ! This native build runs on Windows XP SP3 and higher, both 32 and 64 bit. Based on nginx 1.5.9 (4-1-2014) with; + c

Re: Does it possible to submit duplicated request with the proxy_next_upstream on

2014-01-14 Thread itpp2012
Unless the request is getting que'd while there is a short wait for host A to get online AND fail-over is also happening, its not likely to be added twice. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,245979,246388#msg-246388 ___ nginx mail

src/http/ngx_http_spdy_filter_module.c, latest changesets compiler warnings

2014-01-14 Thread itpp2012
src/http/ngx_http_spdy_filter_module.c, latest changesets compiler warnings In ngx_http_spdy_send_chain(ngx_connection_t *fc, ngx_chain_t *in, off_t limit): src/http/ngx_http_spdy_filter_module.c(682) : warning C4244: 'function' : conversion from 'off_t' to 'size_t', possible loss of data src/ht

Re: src/http/ngx_http_spdy_filter_module.c, latest changesets compiler warnings

2014-01-14 Thread itpp2012
VC 2010, 32bit mode. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,246444,246446#msg-246446 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: src/http/ngx_http_spdy_filter_module.c, latest changesets compiler warnings

2014-01-14 Thread itpp2012
You missed 2, Line +-683: if (offset) { cl = ngx_http_spdy_filter_get_shadow(stream, in->buf, // offset, size); (off_t) offset, (size_t) size); if (c

Re: src/http/ngx_http_spdy_filter_module.c, latest changesets compiler warnings

2014-01-15 Thread itpp2012
I see only the '#if (NGX_SUPPRESS_WARN)' commit on hg, where are the others? can't attach anything here, after changeset 5516:439d05a037a3 additional changes are embedded here: http://nginx-win.ecsds.eu/ngx_http_spdy_filter_module.c Posted at Nginx Forum: http://forum.nginx.org/read.php?2,246444,

Re: src/http/ngx_http_spdy_filter_module.c, latest changesets compiler warnings

2014-01-15 Thread itpp2012
Aha, I need more patience :) Posted at Nginx Forum: http://forum.nginx.org/read.php?2,246444,246478#msg-246478 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Does it possible to submit duplicated request with the proxy_next_upstream on

2014-01-16 Thread itpp2012
renenglish Wrote: --- > Sorry I can’t get it . > > If host A has added the counter and failed to response, the request > would be failed over to host B with successful response, so the > counter would be added twines. Wouldn’t it ? Then a condit

try_files (source)

2014-01-17 Thread itpp2012
In ngx_http_core_try_files_phase (ngx_http_core_module.c) I can see how $uri $uri/ =404 are handled, but for example in; try_files /test.html $uri $uri/ =404; where(or how) is /test.html handled? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,246577,246577#msg-246577

warning C4701 src\http\ngx_http_request.c(728)

2014-01-29 Thread itpp2012
src\http\ngx_http_request.c(728) : warning C4701: potentially uninitialized local variable 'data' used VC 2010. >From full source nginx-01e2a5bcdd8f Posted at Nginx Forum: http://forum.nginx.org/read.php?2,246969,246969#msg-246969 ___ nginx mailing l

Re: Performance penalty when using regular expressions in server_name?

2014-01-29 Thread itpp2012
A different way would to use Lua and an alias table, for a dynamic site I use this to allow a site multiple aliases all directing to the same root, its a simple array with 2 lines for each main site, 1 as server_name and line 2 endless aliases. Its fast and no need to edit nginx.conf just edit a pl

Re: warning C4701 src\http\ngx_http_request.c(728)

2014-01-30 Thread itpp2012
This patch, http://forum.nginx.org/read.php?29,246966,246988#msg-246988 fixes it. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,246969,247001#msg-247001 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx 403 forbidden

2014-01-30 Thread itpp2012
http://www.nginxtips.com/how-to-enable-nginx-directory-listing/ Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247009,247012#msg-247012 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Nginx 403 forbidden

2014-01-30 Thread itpp2012
Maybe you should explain what you expect to happen, if you expect to see the contents then that link has the answer. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247009,247023#msg-247023 ___ nginx mailing list nginx@nginx.org http://mailman

Re: Nginx 403 forbidden

2014-01-30 Thread itpp2012
The error says "directory index of "/home/sqstat/public_html/sarg/" is forbidden" which means there are no html files there while it tries to display the contents which is only allowed when you add autoindex on; see that link I posted. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,2470

Re: Are headers set in the server block inherited to all location blocks

2014-02-05 Thread itpp2012
If its a repetitive block you could use an external file and a single include line. http://nginx.org/en/docs/ngx_core_module.html#include Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247185,247222#msg-247222 ___ nginx mailing list nginx@ngi

Re: Transforming nginx for Windows

2014-02-07 Thread itpp2012
tonyschwartz Wrote: --- > This is very nice. Thanks. I noticed the > encrypted-session-nginx-module is missing from this build. Is there No reason to omit it other then no one has requested it :) I'll have a look and add it if there are no cro

Re: Proxy to upstream HTTPS server *with different* keys/certs in nginx

2014-02-09 Thread itpp2012
tbamise Wrote: --- > Is it possible to use a different set of certs for the client side and > another set for the upstream server side? Use a tunnel like stunnel to encrypt upstreams, which supports client certs. Posted at Nginx Forum: http://f

Re: Proxy to upstream HTTPS server *with different* keys/certs in nginx

2014-02-10 Thread itpp2012
> I've heard that stunned does not scale very well. I'm looking at > managing a lot of simultaneous ssl connections hence using Nginx. You can loadbalance them, even create a pool for one worker with Lua and expand them as needed. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247305,2

Re: nginx.exe has encountered a problem and needs to close. (SSL)

2014-02-20 Thread itpp2012
Felix Quintana Wrote: --- > I have configured the server to accept SSL connections and after two > or three requests always gives the error: > nginx.exe has encountered a problem and needs to close. [...] >     ssl_session_cache   shared:SSL:10m;

Re: nginx.exe has encountered a problem and needs to close. (SSL)

2014-02-20 Thread itpp2012
You might try; ssl_session_cache builtin:4000; which seems to work ok as its processed inside openssl only. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247795,247813#msg-247813 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.or

Re: RE: Odd issue with proxy_pass serving wrong cached data

2014-02-26 Thread itpp2012
disable gzip, sendfile off, use something else then epoll, disable proxy_cache_path and take it from there to see if it still happens. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,247939,247950#msg-247950 ___ nginx mailing list nginx@nginx.

Re: Transforming nginx for Windows

2014-03-06 Thread itpp2012
tonyschwartz Wrote: --- > How ready is this for production? I seem to be getting a lot of > intermittent timeouts/dropped connections to the backend or something > doing upstream proxying. Just wondering before I go digging into this > any more.

Re: Transforming nginx for Windows

2014-03-07 Thread itpp2012
tonyschwartz Wrote: --- > There is definitely some issue doing proxying. At some point, the > connection to the back end appears to go bad. The request from the > browser to nginx just spins and spins. This occurs against (ahem...) > IIS6 and a

[ANN] Windows nginx 1.5.12.1 Cheshire

2014-03-09 Thread itpp2012
13:58 9-3-2014 nginx 1.5.12.1 Cheshire Based on nginx 1.5.12 (9-3-2014) with; + Fixed a c99 logging issue in naxsi + Now includes nginx_basic. Need a simple powerful Windows webserver without all the bling of it's big brother ? then nginx_basic is for you, other custom builds are available upo

Re: PHP type. Thread Safe or Non Thread Safe?

2014-03-18 Thread itpp2012
Felix Quintana Wrote: --- > What kind of php to use as a fastcgi in nginx on Windows? NTS. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,248447,248454#msg-248454 ___ nginx mailing list ngi

[ANN] Windows nginx 1.5.12.2 Cheshire

2014-03-18 Thread itpp2012
20:29 18-3-2014 nginx 1.5.12.2 Cheshire Based on nginx 1.5.12 (release 18-3-2014) with; + nginx security advisory (CVE-2014-0133) + echo-nginx-module v0.51 (upgraded 18-3-2014) + Nginx-limit-traffic-rate-module (https://github.com/bigplum/Nginx-limit-traffic-rate-module) + lua-nginx-module v0.9.6

Re: PHP type. Thread Safe or Non Thread Safe?

2014-03-19 Thread itpp2012
Its not my setup, its a common nginx example how to use a backend like PHP, this can be RoR, Perl or any other type of backend which has a listening interface nginx can pass information on to. Tests has shown that the NTS version is the most reliable/stable to use with nginx which does not mean TS

Re: Nginx forum returns 502 (2014-03-25T08:13Z)

2014-03-26 Thread itpp2012
Maybe you need to switch over to nginx :) Posted at Nginx Forum: http://forum.nginx.org/read.php?2,248660,248719#msg-248719 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Defining a default server for when vhost does not exist for requested hostname (including blank hostname), for http and https

2014-03-28 Thread itpp2012
Jonathan Matthews Wrote: --- > bugs/features like this will get exponentially more attention after > Windows XP goes EOL this April, as (I believe) it's the last major > platform not to support SNI. Which is a moot case since there are at least 5

Re: Radius and TACACS+ based authentication

2014-03-28 Thread itpp2012
AFAIK there is only a ldap module for nginx. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,248820,248823#msg-248823 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: Transforming nginx for Windows

2014-03-28 Thread itpp2012
tonyschwartz Wrote: --- > Has anyone else experienced nginx.exe 1.5.9.1. Cheshire crashing on > Windows server 2003? Intermittently, it is crashing on me with this > message in the NT event logs: > 0.0.0.0, faulting module nginx.exe, version 0.0

Re: Transforming nginx for Windows

2014-04-02 Thread itpp2012
tonyschwartz Wrote: --- > This is definitely working better now. Thanks for letting me know > about the newer version. I didn't notice the newer version because > the order the versions were appearing was backwards, but that appear > to be corre

Re: Transforming nginx for Windows

2014-04-03 Thread itpp2012
tonyschwartz Wrote: --- > run multiple instances. I would suggest nginx for windows should > allow it. Perhaps a config entry for this "shared pool name" property > can be added to the configs. I've tried this with the plain basic nginx version

Re: Transforming nginx for Windows

2014-04-03 Thread itpp2012
> very useful to me. But, for the long term, I still strongly believe > the application should be able to be run multiple times on the same > windows server instance. I agree with you but its not strait forward to get this to work that way, I'll put it on the todo list. Posted at Nginx Forum: h

Re: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread itpp2012
Apart from Kevin's answer, if you are running nginx as a service that service must map the drive letter and then start nginx. When you map a drive as a user the service running nginx does not have access to that user-mapped drive. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249008,24

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread itpp2012
c0nw0nk Wrote: --- > Same issue removed it from the server block i don't think nginx is > compatible with windows network sharing. It is compatible and works perfectly when done properly, post conf and describe how drives are mapped and in which

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-04 Thread itpp2012
I did a simple config: server { listen 80; server_name localhost; root Y:/www.mydomain.nl; index index.php index.html index.htm default.html default.htm; location / { proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $remote_addr; proxy_set_header Host $host; #proxy_pass h

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-05 Thread itpp2012
c0nw0nk Wrote: --- > Try it with a mp4,flv,jpg file. Not documents that have a plain text > mime type. 127.0.0.1 - - [05/Apr/2014:12:58:46 +0200] "GET /29092007003.mp4 HTTP/1.1" 200 245770434 "-" "Mozilla/5.0 (Windows NT CISNSA; Win32; x86) Gecko

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-05 Thread itpp2012
c0nw0nk Wrote: --- > Because when i first connect to the drive all works fine i can access > the media, Then i restart nginx and it says 404 not found. > > What is the file path to delete the caches of the windows file shares. There is no cache

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-05 Thread itpp2012
c0nw0nk Wrote: --- > I nulled out my open file cache and what do you know i can restart > nginx as much as i like and no issues. :) > > So it is open_file_cache that is incompatible with the network sharing > feature on windows. It all depends w

[ANN] Windows nginx 1.5.13.1 Snowman

2014-04-05 Thread itpp2012
0:18 5-4-2014 nginx 1.5.13.1 Snowman .-= This Is Snowman =-. Here's a little snowman fast and fat, here's it's power as fast as a cat When you run Windows you can hear it shout, take me in try me out! The nginx Snowman release is here! Based on nginx 1.5.13 (3-4-2014) with; + A fix for ssl_sessio

Re: RE: Windows | Nginx Mapped Hard Drive | Network Sharing

2014-04-07 Thread itpp2012
c0nw0nk Wrote: > Its a interesting issue maybe the SYSTEM user group in windows does > not have access to the mapped hard drives ? This is default behavior, ea: http://stackoverflow.com/questions/13178892/access-file-from-shared-folder-from-windows-service http://stackoverflow.com/questions/659013

Re: [ANN] Windows nginx 1.5.13.1 Snowman

2014-04-08 Thread itpp2012
10:30 8-4-2014 nginx 1.5.13.2 Snowman Based on nginx 1.5.13 (8-4-2014) with; + CVE fix CVE-2014-0160 + openssl-1.0.1g (upgraded 8-4-2014) + Source changes back ported + Source changes add-on's back ported + Changes for nginx_basic: Source changes back ported * Additional specifications are like 0:

Re: RE: OpenSSL leaks server-Keys / The Heartbleed Bug

2014-04-14 Thread itpp2012
Fyi. if you are running a ssl tunnel like stunnel with openssl 0.9.x, this attack is logged as "SSL3_GET_RECORD:wrong version number" as opposed to no nginx/openssl logging. If you have logging going back 2 years and you are seeing these log entries now, you may be able to detect attacks from befo

nginx proxy for syncml

2014-04-22 Thread itpp2012
Next to imap and other specific buildin nginx proxies could any of them be compatible with syncml ? Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249462,249462#msg-249462 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailma

Re: Naxsi Rules Bug

2014-04-23 Thread itpp2012
And the problem is ?? you might get better support for naxsi here; https://groups.google.com/forum/#!forum/naxsi-discuss Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249499,249501#msg-249501 ___ nginx mailing list nginx@nginx.org http://mai

[ANN] Windows nginx 1.7.1.1 Snowman

2014-04-24 Thread itpp2012
21:28 24-4-2014 nginx 1.7.1.1 Snowman Based on nginx 1.7.1 (24-4-2014) with; + lua-upstream-nginx-module v0.1 (upgraded 24-4-2014) + Streaming with nginx-rtmp-module, v1.1.4 (upgraded 24-4-2014) + New development tree nginx export 1.7 + Naxsi WAF v0.53-1 (upgraded 17-4-2014) + Source changes back

Re: use subdirectories instead of subdomains

2014-04-25 Thread itpp2012
Thuban Wrote: --- > Hello, > I am trying to use subdirectories instead of subdomains because my > host > doesn't support subdomains. > http://forum.nginx.org/read.php?11,249636,249642#msg-249642 Posted at Nginx Forum: http://forum.nginx.org/re

Re: nginx proxy for syncml

2014-04-27 Thread itpp2012
Solved ! Get https://github.com/yaoweibin/nginx_ajp_module add it (works for Windows as well, for which pull requests are outstanding to make it work) and configure it: location /app/syncml { ajp_keep_conn on; ajp_pass tomcatbackend:8009; include ./con

Re: mod_rpaf enabled; still apache log showing 127.0.0.1 as source !!

2014-04-28 Thread itpp2012
Might be missing this, from an old Apache config: # Configuration for mod_rpaf RPAFenable On RPAFproxy_ips 192.168.2.123 # RPAFsethostname host.your.domain # End of mod_rpaf. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249698,249710#msg-249710

Re: The http output chain is empty.

2014-04-29 Thread itpp2012
Maybe related to http://trac.nginx.org/nginx/ticket/132 Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249721,249725#msg-249725 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

[ANN] Windows nginx 1.7.1.2 Snowman

2014-05-02 Thread itpp2012
13:56 2-5-2014 nginx 1.7.1.2 Snowman Based on nginx 1.7.1 (30-4-2014) with; + lua-nginx-module v0.9.7 (upgraded 1-5-2014) + Openssl fix for CVE-2010-5298 + AJP tomcat backend support (https://github.com/yaoweibin/nginx_ajp_module) Note: a folder '.\nginx\ajp_temp' will be created, when running n

Re: nginx 1.4.2 [error] 2516#12636: CreateFile()

2014-05-06 Thread itpp2012
sam.gu Wrote: --- > root cache; > "D:/myapp/nginx-1.4.2/cache/myapp/static/msgengine/msgengine.js" root = nginx base + root value, so it looks for your app where you told it to look. Posted at Nginx Forum: http://forum.nginx.org/

Re: autoindex hiding dot folders

2014-05-08 Thread itpp2012
Very useful patch but the naming is not correct, . and .. or not your typical hidden type, autoindex_show_dot_folders would make more sense. And "if (ngx_de_name(&dir)[0] == '.') {" will exclude files which start with a dot, if (ngx_de_name(&dir) == '.') or (ngx_de_name(&dir) == '..') {, would b

Re: Caching servers in Local ISPs !!

2014-05-09 Thread itpp2012
Its quite simple, think of it this way, a DNS entry does not have to point to the same IP everywhere. Place your cache machines at a ISP, have them assign its IP to your preferred dns name, thats about it. The rest like distribution works like a reverse riverbed with a master mirror, rsync or the

Re: Caching servers in Local ISPs !!

2014-05-09 Thread itpp2012
> So on easy note, i would have to assign those machines the preferred > dns > and use rsync on regular basis in order to make identical data > between > local caching machines and main front end content servers ? Yep. > What if a client request a video which is not in local caching server > ?

Re: Caching servers in Local ISPs !!

2014-05-10 Thread itpp2012
See http://en.wikipedia.org/wiki/Content_delivery_network and http://en.wikipedia.org/wiki/File:Akamaiprocess.png Make yourself a HLD (high level design) before getting to technology. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249997,250007#msg-250007 _

Re: Strange advisory

2014-05-11 Thread itpp2012
"One man's data is another man's code" If this would happen on Windows you'd scream murder, yet in 2014 you are advocating an insecure workspace by allowing foreign control stuff to do out of bound stuff. Anything and anyone can create a file which contains stuff, it is the responsibility of what

[ANN] Windows nginx 1.7.1.3 RedKnight

2014-05-17 Thread itpp2012
17:21 17-5-2014 nginx 1.7.1.3 RedKnight Go ask Alice, I think she'll know, When logic and proportion have fallen dead And the white knight is talking backwards And the red queen's lost her head Remember what the dormouse said Feed your head, feed your head, as the RedKnight rizes again from the de

Added syslog support is not working on win32 (changeset 5702:777202558122)

2014-05-23 Thread itpp2012
With original sources from 1.7.1, access_log syslog:server=192.168.2.8:514 main; 2014/05/23 18:55:30 [debug] 2100#2140: *1 http write filter 2014/05/23 18:55:30 [debug] 2100#2140: *1 http finalize request: 0, "/index.html?" a:1, c:2 2014/05/23 18:55:30 [debug] 2100#2140: *1 http req

Re: Added syslog support is not working on win32 (changeset 5702:777202558122)

2014-05-23 Thread itpp2012
Thats it, working fine now, tnx! Posted at Nginx Forum: http://forum.nginx.org/read.php?2,250328,250334#msg-250334 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

Re: nginx add trailing slash with wrong port

2014-05-24 Thread itpp2012
A listen to port 81 should not invoke a response from 8081, check to see who is listening on 8081. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,250338,250339#msg-250339 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman

Re: Caching servers in Local ISPs !!

2014-05-27 Thread itpp2012
I'd call that provisioning, a simple try_files directive can deal with that while the provisioning service syncs. http://nginx.org/en/docs/http/ngx_http_core_module.html#try_files Then jump left for cached contents or jump right for non-cached contents. Posted at Nginx Forum: http://forum.nginx.

Re: Caching servers in Local ISPs !!

2014-05-27 Thread itpp2012
I'm not seeing where you determine if a file is present on an edge system, the try_files directive allows you to redirect or not (locally present or not). I don't really see a point for using (proxy)cache, the file is present or it is not. location / { try_files $uri @getfrom_origin; } location @

Re: Caching servers in Local ISPs !!

2014-05-27 Thread itpp2012
Of course this will work but when nginx restarts or the cache gets damaged/corrupted the whole shebang starts again And you can't control the cached files versus try_files and a normal filesystem. Posted at Nginx Forum: http://forum.nginx.org/read.php?2,249997,250395#msg-250395 _

Re: Caching servers in Local ISPs !!

2014-05-28 Thread itpp2012
shahzaib1232 Wrote: --- > Thanks itpp. So according to you the more preferable way is > non-caching > replication of main content servers to local ISP servers and than run > rsync > periodically for replication. So if file not found in local ISP n

Re: Caching servers in Local ISPs !!

2014-06-04 Thread itpp2012
shahzaib1232 Wrote: --- > @itpp, i just used your method try_files and it worked flawlessly :). > Following is the testing config : > > server { > listen 80; > server_name domain.com; > root /var/www/html/files; > > locati

[ANN] Windows nginx 1.7.2.2 RedKnight

2014-06-05 Thread itpp2012
20:13 5-6-2014 nginx 1.7.2.2 RedKnight Based on nginx 1.7.2 (5-6-2014) with; + Openssl-1.0.1h (CVE-2014-0224, CVE-2014-0221, CVE-2014-0195, CVE-2014-0198, CVE-2010-5298, CVE-2014-3470) + New nginx Windows icon + Source changes back ported + Source changes add-on's back ported + Changes for nginx

Re: the http output chain is empty bug (nginx lua module)

2014-06-06 Thread itpp2012
See http://trac.nginx.org/nginx/ticket/132 Posted at Nginx Forum: http://forum.nginx.org/read.php?2,250689,250692#msg-250692 ___ nginx mailing list nginx@nginx.org http://mailman.nginx.org/mailman/listinfo/nginx

<    1   2   3   4   5   >