AjaySawant Wrote: ------------------------------------------------------- > doesn't open as tomcat is running on 192.168.2.6 and not localhost. [...] > proxy_pass http://localhost:8080/auth_app/; Maybe you made a typo in your config.by itpp2012 - Nginx Mailing List - English
The proxy_protocol 'passing' needs to be supported by the vpn/sshd service, not many can handle this (yet).by itpp2012 - How to...
Hashing means in this case "ip ranges divided in blocks", so your LAN most likely is considered one block.by itpp2012 - How to...
Francis Daly Wrote: ------------------------------------------------------- > nginx gets a request for /static/styles.css. > > I'm not aware of a rewrite which will let you decide which of > web-app-1 > and web-app-2 is the correct one to proxy_pass this request to this > time. Both web apps use the same url. There is a distinction between web apps, the request url, whby itpp2012 - Nginx Mailing List - English
You can with stream {} See the docs at nginxby itpp2012 - How to...
Francis Daly Wrote: ------------------------------------------------------- > It cannot work in stock nginx just using nginx.conf normal directives. You can with (many) proper rewrites but this does require a very close eye on the logfiles until you have rewritten all the 40x's, and for the sake of performance eventually have them converted to a sequence of maps.by itpp2012 - Nginx Mailing List - English
location /flask-demo/ { root /var/www/passenger-python-flask-demo; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Host $host; rewrite /flask-demo/([^/]+) /$1 break; proxy_pass http://127.0.0.1:3000/; } And then add additional location blocksby itpp2012 - Nginx Mailing List - English
Its part of stream {} http://mailman.nginx.org/pipermail/nginx-devel/2016-September/008752.htmlby itpp2012 - Nginx Mailing List - English
You can if you use the web portal at https://forum.nginx.org/by itpp2012 - Nginx Mailing List - English
https always has a name, vpn/ssh does not so make the map(ping) work this way. internal passing on (443->map->1443->proxy_pass with proxy protocol...)by itpp2012 - How to...
Define an extra server {} block, enable proxy protocol there, move proxy_pass to server block, call server block from map.by itpp2012 - How to...
https://www.bjornjohansen.no/exclude-requests-from-nginx-access-logby itpp2012 - How to...
Looks like this issue: http://stackoverflow.com/questions/30619703/java-io-eofexception-when-downloading-files-from-remote-server-to-android-phoneby itpp2012 - Nginx Mailing List - English
http://www.queryadmin.com/1214/block-user-agents-referrers-nginx-map/by itpp2012 - How to...
With Lua you will find many examples how to interact (non-blocking) with mysql, Lua also contains a load balancer which can be adapted to loadbalance sql instances. See also https://www.google.nl/#q=nginx+lua+mysqlby itpp2012 - Nginx Mailing List - English
Without specifying a balance method such as 'hash'/'leastconn' a server which has the best response time is chosen more often then those who's response time are higher.by itpp2012 - Other discussion
mzibit Wrote: ------------------------------------------------------- > endpoint listen only in HTTP [...] > chrome blocks for don't have a valid certificate for > elasticbeanstalk.com domain. Sounds like default and correct behavior.by itpp2012 - Nginx Mailing List - English
In some cases 'myapplication' needs to be told it is running on port 443, in other words the responses to the client are written back in http because 'myapplication' is (configured) assuming its entry point is http.by itpp2012 - Nginx Mailing List - English
This will work provided you get the real IP addresses.by itpp2012 - How to...
max = max, the static content type makes no difference. Dynamic content can't be cached, thats why it's called dynamic.by itpp2012 - Nginx Mailing List - English
http://stackoverflow.com/questions/6062810/expires-max-on-nginxby itpp2012 - Nginx Mailing List - English
With stream {} you can (unless it uses too many dynamic ports). see also https://support.citrix.com/article/CTX101810by itpp2012 - Nginx Mailing List - English
abrogard Wrote: ------------------------------------------------------- > Astounding. I'm told MS did this to stop it being used as a server. > But hell that's what it is supposed to be isn't it? If it's not a server, its not a server. nginx does not have these limits on any type of windows version.by itpp2012 - Nginx Mailing List - English
robertf57 Wrote: ------------------------------------------------------- > server { > #listen 80; > listen 443 ssl; > server_name web01.mysite.com; [...] > # Redirect all HTTP requests to HTTPS > rewrite ^ https://$server_name$request_uri permanent; Your looping back on yourself.by itpp2012 - Nginx Mailing List - English
Looks like the 412 is coming from your backend (apache) and not nginx.by itpp2012 - How to...
Just create a temporary exception.by itpp2012 - How to...
https://www.google.nl/#q=lua+dynamic+ssl+certificate ea: https://litespeed.io/dynamic-tls-certificates-with-openresty-and-ssl_certificate_by_lua/by itpp2012 - How to...
https://support.sysally.net/boards/1/topics/335by itpp2012 - Php-fpm Mailing List - English
stream { limit_conn_zone $binary_remote_addr zone=straddr:10m; upstream backendsmtp { server smtp1.local:25; server smtp2.local:25; } server { listen 2025 ssl; error_log /logging/stream_local_smtp.log debug; ssl_certificate /nginx/crts/sdom.cert; ssl_certificate_key /nginx/crts/sdom.key; include /nginx/conf/sslciphers.conf; ssl_session_timeoby itpp2012 - Nginx Mailing List - English
The only other way is to use a parser which reads in your combined config and splits it out into http/https blocks. ea. http://stackoverflow.com/questions/15277453/any-good-way-to-programmatically-change-nginx-config-file-from-pythonby itpp2012 - How to...
![]() |
![]() |
![]() |
![]() |
![]() |