For RDP you need streaming, ea. vpn example: # load balance your vpn servers worker_processes 2; error_log logs/error.log; events { worker_connections 16384; } # http { # ... your usual http block ... # } # http end stream { error_log logs/stream_error_openvpn.log; upstream backend { hash $remote_addr consistent; server 192.168.99.3:8443; server 1by itpp2012 - How to...
Have a look at https://github.com/replay/ngx_http_lower_upper_caseby itpp2012 - How to...
silentmiles Wrote: ------------------------------------------------------- > No, I'm just deleting the physical file. Does the shared mem cache > persist after the file is deleted? Is there a method of flushing the > mem cache? There are cleanup routines in nginx which may do some of this work but this code does not assume some external party is deleting the files while nginx is ruby itpp2012 - How to...
Some strange things with http2 When using: listen 443 ssl http2; In firefox you need to set these values (which should already be there but may not have the proper settings): network.http.spdy.enabled.http2 = false network.http.spdy.enabled.http2draft = true When both are set true ssl redirects to its root or even to port 80. When using: listen 80 http2; Thisby itpp2012 - Nginx Mailing List - English
Are you also updating the memory (keys_zone) ?by itpp2012 - How to...
4 and then 5 is normal nginx behavior, your going to need something between 3 and 4, running a nginx debug build with full debugging on should show you the logging you need, locate this debug log code in the sources and build a normal version with only this debug line enabled. A Lua solution is better asked here https://groups.google.com/forum/#!forum/openresty-en just be clear (like your lastby itpp2012 - How to...
Sounds like log buffering of some kind, could be that a continues open link is buffered until it is closed before it is written to the logs, which sounds logical as nginx does not yet know how much data has been send in order to complete the logging. It should be possible to capture the request in Lua and log that separately.by itpp2012 - How to...
If you see the disconnect you must also see the connect, maybe a difference between a get/post request where with post you don't see the url in the log.by itpp2012 - How to...
You mean something like: [09/Sep/2015:20:21:38 +0200] 52.88.xxx.yyy zzzzz - - http "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00 [...] \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0by itpp2012 - Nginx Mailing List - English
Interesting, we're doing the same thing with enigma2 boxes but we use xbmc (called kodi now), anyway are you sure vlc is not accessing the box directly bypassing nginx?by itpp2012 - How to...
You might need more then one php-cgi process, as in a pool, in some cases when php is busy it will block nginx as well, see the install services on http://nginx-win.ecsds.eu/ for examples.by itpp2012 - How to...
strtwtsn Wrote: ------------------------------------------------------- > then the first limit won't apply to the second location > > Thanks Once a location match is made it will stay inside this location including its settings.by itpp2012 - Nginx Mailing List - English
You can define several zones; limit_req_zone $binary_remote_addr zone=flooda:20m rate=128r/s; limit_req_zone $binary_remote_addr zone=floodp:20m rate=64r/s; limit_req_zone $binary_remote_addr zone=floodh:10m rate=64r/s; and use them separately in location(s) /limited/ { limit_req zone=floodh burst=64 nodelay; }by itpp2012 - Nginx Mailing List - English
Look in the nginx logfiles.by itpp2012 - Other discussion
Use awstats and customize it to your needs.by itpp2012 - How to...
Firefox/IE sometimes gets an android apk as text, this forces octet, anyone see any issues? conf/mime.types line 64: application/octet-stream iso img; - application/octet-stream msi msp msm; + application/octet-stream apk msi msp msm;by itpp2012 - Nginx Mailing List - English
See the install nginx/php services on http://nginx-win.ecsds.eu/by itpp2012 - How to...
Read a few things first before tacking these things: https://blog.martinfjordvald.com/2010/07/nginx-primer/by itpp2012 - How to...
MariaDB has nothing to do with nginx, inside nginx you configure php or Lua and from there on you connect to mariadb, mariadb should already be installed separately. nginx by itself does not connect to any database.by itpp2012 - How to...
Maybe this one https://github.com/vozlt/nginx-module-vtsby itpp2012 - How to...
inzanez Wrote: ------------------------------------------------------- > So, finally can give feedback. Stream works very well for the OpenVPN Good ! > Only thing I wonder now: > Can I still use the same instance of NGINX to also handle HTTPS > requests on 443 (apart from the stream module handling stream)? I have > no clue how NGINX would be able to tell them apart, but,by itpp2012 - How to...
Naxsi is not going to do much for you, look into Lua (openresty) where you can do these kind of things, see also https://groups.google.com/forum/#!forum/openresty-enby itpp2012 - How to...
There where a php file is suppose to be run you need to tell nginx to do so (fast_cgi).by itpp2012 - How to...
adithyakhamithkar Wrote: ------------------------------------------------------- > I am running ubuntu 14.04 with Nginx 1.8.0. While opening the web > pages in https the pages appear to be broken as the css/js/images > don't load. I get this error "Blocked loading mixed active content" This is a browser issue, not nginx.by itpp2012 - How to...
13:03 22-8-2015 nginx 1.9.4.1 Lizard Based on nginx 1.9.4 (18-8-2015) with; + headers-more-nginx-module v0.26 (upgraded 19-8-2015) + Openssl-1.0.2d + "Proxy-Authenticate" header for the 407 response + lua-nginx-module v0.9.16 (upgraded 13-8-2015) + pcre-8.37b-r1594 (upgraded 22-8-2015) + 'include' in upstream * Known broken issues: ajp cache, spdy + Source changes back portedby itpp2012 - Nginx Mailing List - English
thg Wrote: ------------------------------------------------------- > Hi, > > Got some help here with cURL and it seems there are no browser issue > (I have never used this tool before). My helper also indicated that by > being able to upload files <20MB browser issues would not be the case. Yes and no, a browser reacts differently then curl, I've seen such cases where fby itpp2012 - Other discussion
Try without a / at the end of proxy_pass. If that doesn't work you may need; location /psp/HRPROD { ........by itpp2012 - How to...
Try doing the client part with curl to exclude any browser issue.by itpp2012 - Other discussion
thg Wrote: ------------------------------------------------------- > My error log shows this: > > 2015/08/14 13:30:32 12324#13008: *11662698 client closed > connection while waiting for request, client: 194.143.xx.xx, server: > 0.0.0.0:80 This is a browser(client) action. > * I have checked that the D drive has enough free disk space Try without buffering, http:/by itpp2012 - Other discussion
Could be a corrupt cookie, also see this one: http://stackoverflow.com/questions/12315832/how-to-fix-nginx-throws-400-bad-request-headers-on-any-header-testing-toolsby itpp2012 - Other discussion
![]() |
![]() |
![]() |
![]() |
|