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
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 as such, shares can get in a disconnect state (the infamous red cross), see http:/by itpp2012 - Nginx Mailing List - English
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/20100101 Firefox/28.0" Also works fine as expected, mp4by itpp2012 - Nginx Mailing List - English
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 http://127.0.0.1:8000; expires 3s; max_ranges 0; } # deny access to .htaccess files, iby itpp2012 - Nginx Mailing List - English
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 context nginx is running.by itpp2012 - Nginx Mailing List - English
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.by itpp2012 - Nginx Mailing List - English
For generating passwords you need to use htpasswd.exe from apache.by itpp2012 - How to...
> 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.by itpp2012 - Nginx Mailing List - English
Its fairly simple; for example: error_log d:/webroot/logs/error.log; or: root 'd:/cache/root/xcadmin';by itpp2012 - How to...
See the nginx.conf file in /confby itpp2012 - How to...
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 1.5.12 which does not support multiple instances either, it used to a longby itpp2012 - Nginx Mailing List - English
You don't need to chmod anything on Windows, check the logfiles for messages why nginx doesn't start. Documentation can be found http://nginx.org/en/ and http://nginx.org/en/docs/by itpp2012 - New Member Introductions
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 corrected now. Good :) yep I've managed to get a proper listing like explorer does.by itpp2012 - Nginx Mailing List - English
Have a look here http://nginx-win.ecsds.eu/by itpp2012 - How to...
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.0.0, fault address > 0x001a54ff. Have you tried 1.5.12.2 ? contents nginx.cby itpp2012 - Nginx Mailing List - English
AFAIK there is only a ldap module for nginx.by itpp2012 - Nginx Mailing List - English