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 likes. And of course this can all be done with nginx at all locations.by itpp2012 - Nginx Mailing List - English
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 be better IMHO.by itpp2012 - Nginx Mailing List - English
Already fixed in nginx for Windows last week (2-5), other packages need to update their repo's and recompile.by itpp2012 - Ideas and Feature Requests
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.by itpp2012 - Nginx Mailing List - English
Look at where root is pointing and then look at where php expects stuff to be. is root and php and $document_root all pointing to the same location? disable all thats not needed like tryfiles, keep a simple config.by itpp2012 - How to...
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;by itpp2012 - How to...
It does say "connect() to unix:/var/run/php5-fpm-rompr.sock failed" so I'd google that first.by itpp2012 - How to...
Are you sure the sockets are working, rights and so on ?by itpp2012 - How to...
Sure, for each named site create a location block; location /path1 { root /etc/path1; ....... } location /path2 { root /etc/path2; ....... } http://nginx.org/en/docs/http/ngx_http_core_module.html#locationby itpp2012 - How to...
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 nginx jailed create it yourself and set additional rights for the service user who runs ngby itpp2012 - Nginx Mailing List - English
Maybe related to http://trac.nginx.org/nginx/ticket/132by itpp2012 - Nginx Mailing List - English
No its not weird, php like RoR are independent systems from nginx, so when you tell nginx to change root you need to tell php as well where root has gone to, or define a rootbase, add it to the passing parameters from nginx. nginx, root: /bla/bla2/bla3 php, root /bla/bla2/bla3 nginx, change root: /bla/bla2/bla4 php, root /bla/bla2/bla3 (huh?)by itpp2012 - How to...
'root' can be set just about anywhere, just use it. root /bla/path/somewhere ..... root /bla/path/somewhereelse .....by itpp2012 - How to...
Might be missing this, from an old Apache config: # Configuration for mod_rpaf <IfModule mod_rpaf.c> RPAFenable On RPAFproxy_ips 192.168.2.123 # RPAFsethostname host.your.domain </IfModule> # End of mod_rpaf.by itpp2012 - Nginx Mailing List - English
Sounds like a bug, report it here http://trac.nginx.org/nginx/report/1?sort=ticket&asc=0&page=1by itpp2012 - How to...
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 ./conf/proxy.conf; proxy_set_header Accept-Encoding ""; keepby itpp2012 - Nginx Mailing List - English
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-249642by itpp2012 - Nginx Mailing List - English
It's a bit of a hack, probably better done with map, but it does the job. Let it inspire you to make it better :) ____server { ______listen 80; ______server_name .mydom.com; ______access_log logs/mydom.com.access.log main; ______error_log logs/mydom.com.error.log; ______if ($host ~ "^(w{3}\.)?(.*?)\.?mydom\.com$") { set $myuri $2; } ______if ($myuri = '') { set $myuri 'wwwby itpp2012 - How to...
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 ported + Source changes add-on's back ported + Changes for nginx_basic: Source changes backby itpp2012 - Nginx Mailing List - English
server_name www.mydomain.com mydomain.com;by itpp2012 - How to...
And the problem is ?? you might get better support for naxsi here; https://groups.google.com/forum/#!forum/naxsi-discussby itpp2012 - Nginx Mailing List - English
Next to imap and other specific buildin nginx proxies could any of them be compatible with syncml ?by itpp2012 - Nginx Mailing List - English
See http://www.simplicidade.org/notes/archives/2011/02/nginx_proxy_host_header.htmlby itpp2012 - How to...
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 before 7-4-2014. Here we have many stunnels with openssl 0.9.x and found the first attacksby itpp2012 - Nginx Mailing List - English
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:18 5-4-2014 nginx 1.5.13.1 Snowman Builds can be found here: http://nginx-win.ecsds.eu/by itpp2012 - Nginx Mailing List - English
You should see that in the logfiles.by itpp2012 - Other discussion
See http://nginx.org/en/docs/http/ngx_http_realip_module.htmlby itpp2012 - Other discussion
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/accessing-a-shared-file-unc-from-a-remote-non-trusted-domain-with-credentials OTOH, nby itpp2012 - Nginx Mailing List - English
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_session_cache via trac ticket #528, thanks to Maxim! + Stability fixes, more performance tuning +by itpp2012 - Nginx Mailing List - English
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 what kind of host the sharing is done from, for instance here we use Debian(vm)by itpp2012 - Nginx Mailing List - English
![]() |
![]() |
![]() |
![]() |
![]() |