noesberger Wrote: ------------------------------------------------------- > location /ifttt/ { > proxy_pass http://192.168.1.214:1880/ifttt; > } location /ifttt/ { proxy_pass http://192.168.1.214:1880; }by itpp2012 - How to...
Lukas Tribus Wrote: ------------------------------------------------------- > As I said, the best way would be to drop the TLS handshake, but nginx > doesn't support this afaik. If you mind the overhead, ssl_preread_server_name could be used for this.by itpp2012 - Nginx Mailing List - English
It looks like tomcat is adding this as a reply to the clients and should be a setting. Or your subfilter is doing this.by itpp2012 - How to...
You need to adjust the tomcat application (configuration) with proxy settings. https://www.mkyong.com/nginx/nginx-apache-tomcat-configuration-example/ http://webapp.org.ua/sysadmin/setting-up-nginx-ssl-reverse-proxy-for-tomcat/by itpp2012 - How to...
Example from nginx for Windows documentation, chapter 9. http { map $request_uri $requri { default 1; / 0; } …………………… server { listen 80; server_name www.mydomain.eu; root '/webroot/www.mydomain.eu’; if ($requri) { return 301 https://www.mydomain.eu$request_uri; }by itpp2012 - Migration from Other Servers
Some workarounds: http://serverfault.com/questions/496749/in-nginx-reverse-proxy-how-to-set-the-secure-flag-for-cookies https://maximilian-boehm.com/hp2134/NGINX-as-Proxy-Rewrite-Set-Cookie-to-Secure-and-HttpOnly.htmby itpp2012 - Nginx Mailing List - English
The 'secure' option is not working?by itpp2012 - Nginx Mailing List - English
https://docs.joomla.org/Enabling_Search_Engine_Friendly_(SEF)_URLs_on_Nginxby itpp2012 - Ideas and Feature Requests
You can do this already with try_files and some Lua code but all in all it's not recommended to do this because this will kill performance eventually due to the fact each access request also means a file access request which on its own is a blocking operation.by itpp2012 - Ideas and Feature Requests
That should work, testing is the only way to find out.by itpp2012 - How to...
tmtben Wrote: ------------------------------------------------------- > I'm still trying to access several vpn servers by hostname using the > same port on the same host. > > I looked at the \conf\nginx-sslh-v1.0.conf file for Windows version > and here: > http://stackoverflow.com/questions/34741571/nginx-tcp-forwarding-based > -on-hostname/40135151 > > But Iby itpp2012 - How to...
The problem must be located in the backend (proxypass/fastcgi) where it limits the amount of clients.by itpp2012 - How to...
inzanez Wrote: ------------------------------------------------------- > Does SSLH support some sort of SNI then? Yes (ssl_preread)by itpp2012 - How to...
Sure, get our Windows version and look at \conf\nginx-sslh-v1.0.confby itpp2012 - How to...
Stream uses its own block: http { ......... } stream { ........ }by itpp2012 - How to...
Your best bet is to go for Lua, reloading nginx conf is an option but can lead to problems when done too many times.by itpp2012 - How to...
This will work when used with Map but it won't work for what you're trying to do, the If applies to one logfile only. And you wanted to associate url's to logfiles which is what the documentation url I send shows.by itpp2012 - Other discussion
http://nginx.org/en/docs/http/ngx_http_log_module.html#access_logby itpp2012 - Other discussion
You could use 'stream' or venture in to a Lua solution (openresty).by itpp2012 - How to...
Lucas Rolff Wrote: ------------------------------------------------------- > > When using purge as availalbe in nginx-plus > (http://nginx.org/r/proxy_cache_purge), it takes care of removing all > cached variants, much like it does for wildcard purge requests. > Ahh cool! Nice one - maybe we'll be lucky that it gets to the open > source version one day ;) https://githubby itpp2012 - Nginx Mailing List - English
The idea is nice but pointless, if you maintain this list over 6 months you most likely will end up blocking just about everyone. Stick to common sense with your config, lock down nginx and the backends, define proper flood and overflow settings for nginx to deal with, anything beyond the scope of nginx should be dealt with by your ISP perimeter systems.by itpp2012 - Nginx Mailing List - English
Syntax: map_hash_bucket_size size; Default: map_hash_bucket_size 32|64|128; Context: http The err message is valid but may be misleading due to the places you used, a dup msg does not indicate the valid context area.by itpp2012 - Nginx Mailing List - English
benner999 Wrote: ------------------------------------------------------- > I have a very strange thing; I run a setup with Nginx(v1.4.6) as proxy > and Tomcat(v7.0.62) on Ubuntu 14.04 LTS server 1.4 is really old, try a newer version. > It runs fine for some time 10+ hours - and then out of the blue it > gets very slow and at some time I have to restart Tomcat. Restarting &gby itpp2012 - How to...
Ideas: https://www.google.nl/#q=nginx+dynamic+loading+certificate Just one example: http://www.greg-gilbert.com/2015/08/serve-dynamic-ssl-certificates-in-nginx/by itpp2012 - How to...
No costs, plenty of examples to find with google.by itpp2012 - How to...
Tcp proxy functions: https://nginx.org/en/docs/stream/ngx_stream_core_module.htmlby itpp2012 - How to...
proxy_pass http://192.168.1.100:38080; (remove the trailing slash)by itpp2012 - Nginx Mailing List - English
What does this do: location /app1 { rewrite /app1/([^/]+) /$1 break; proxy_pass https://192.168.1.2:8080/; }by itpp2012 - How to...
"GET /api/4/ HTTP/1.1" 404 Means files need to be in /api/4/ Looks like your backend is not looking there or is not configured to serve files from there.by itpp2012 - How to...
Check the logfiles where the file is being looked for, the rewrite changes the client request towards where the backend should have the files requested, that needs to match.by itpp2012 - How to...
![]() |
![]() |
![]() |
![]() |
![]() |