Hero999 Wrote: ------------------------------------------------------- > Ich habe mehrere virtuelle Hosts angelegt, weil ich per dynDNS auf dem > Raspberry eine (oder mehrere) Webseite laufen lassen will. Leider sind > die Vhosts nicht im LAN erreichbar. Der Server hängt auf dem RPi an Fügen Sie die DNS-Namen, um Ihren lokalen DNS.by itpp2012 - German Forum
Richard Stanway Wrote: ------------------------------------------------------- > TCP has no concept of server names, so this is not possible. It only > works > in HTTP because the client sends the hostname it is trying to access > as To put into better wording, The 'hostname' technique has 2 parts, part 1 is a receiver (nginx) receiving a request containing a hostname which itby itpp2012 - Nginx Mailing List - English
frederico Wrote: ------------------------------------------------------- > Hi, > > I've tried a lot of commands, stream is not recognized and I don't > think it's possible to make it work. nginx need a certificate and RD > Gateway need also a certificate, so there are 2 SSL connection between > the client and the server, it's can't work. Then you have tried the wrong vby itpp2012 - Nginx Mailing List - English
Garcia Wrote: ------------------------------------------------------- > Hi, > Can Nginx work with oracle weblogic server properly? As a proxy nginx can easily handle weblogic servers, interfacing (API) nginx with Oracle can be done with Lua. > Does Oracle have support for Nginx? It depends what kind of support you are looking for, ask Oracle to start with.by itpp2012 - Nginx Mailing List - English
If it works then leave it as it is, adding tuning parameters is always helpful but without knowing what to tune it makes no sense to add them all. Query the users and check the logfiles to see if anything is misbehaving.by itpp2012 - How to...
meirhazon Wrote: ------------------------------------------------------- > Hello, > > Can I load balance SCTP traffic by using nginx? Stream {} http://nginx.org/en/docs/stream/ngx_stream_core_module.html should be capable.by itpp2012 - Nginx Mailing List - English
nginx doesn't have dynamic config files other then reload them all, so you would have to resort to Lua for most parts (some can be done with nginx itself). https://github.com/rstudio/redx is a good place to start and https://github.com/mindreframer/nginx-lua-stuff for many examples Store your user configuration items in a database and cache them when read, then use Lua to do the processing.by itpp2012 - How to...
frederico Wrote: ------------------------------------------------------- > Should I replace proxy_pass to stream? If your config is a http {} one then yes, simple example https://forum.nginx.org/read.php?2,263084,263099#msg-263099by itpp2012 - Nginx Mailing List - English
frederico Wrote: ------------------------------------------------------- > Hi timbo, > > I am also trying to connect to a Remote Desktop Gateway through nginx. > Did you get it work? Have you tried this using stream {} ? which works fine for vpn and other streaming services.by itpp2012 - Nginx Mailing List - English
First you map the argument (sessionID) in to a variable, https://www.axivo.com/threads/how-do-i-map-a-location-pattern-in-nginx.59/ https://www.ruby-forum.com/topic/4410004 And then you can use it in hash.by itpp2012 - How to...
Maxim Dounin Wrote: ------------------------------------------------------- > For your particular task, it may be easier to configure raw TCP > proxy to a particular 3rd party SMTP server (e.g., using nginx > stream proxy, > http://nginx.org/en/docs/stream/ngx_stream_core_module.html) > or a full-featured STMP server with a smarthost configured. Simple example 2 interfaceby itpp2012 - Nginx Mailing List - English
niharika.jain@validsoft.com Wrote: ------------------------------------------------------- > yes, we already have a program generated session id which is passed in > request-response to maintain session. we want to use this session id > for sticky sessions in nginx opensource load balancer. I meant to use this for non-sticky sessions as well, maybe use it as a hash for the balanceby itpp2012 - How to...
niharika.jain@validsoft.com Wrote: ------------------------------------------------------- > MyProject server creates a session id and sends it back in case of > stateful calls, back to the client server and this id is carried in > subsequent request-response. > > This workflow is in place and working till we have 1 server. In case > of 3 servers, we need to make step 4 aby itpp2012 - How to...
The easiest would be at 2 to add a header with client information, when that header arrives at your systems you can easily do things with it. Would it be possible to do anything at flow point 2 ?by itpp2012 - How to...
Hmmm, --Flow--: 1. Clients 2. Client server with nginx (loadbalancer) 3. Myproject servers (3x) Do you know if a request is stateful/stateless between 1 and 2 ? (when it arrives at 2) (if you can detect the state you can use 2 upstreams) If this flow is not correct please edit because your description is not really clear to me. Ea. where is your API located? between 1 and 2? if so whaby itpp2012 - How to...
Your best bet is to make a flow diagram and mark in there what you want to happen under which circumstances, after that we can figure out which options are available. For example there is the option $realip_remote_addr which I think is mappable or at the least usable in Lua. To loadbalance a service you either need to make the service identifiable from inside the service or from the resource usby itpp2012 - How to...
This might help: http://dgtool.blogspot.nl/2013/02/nginx-as-sticky-balancer-for-ha-using.htmlby itpp2012 - How to...
rocklee44 Wrote: ------------------------------------------------------- > So why Nginx cannot understand parameter max_conns=1024 in > upstreams.conf ? Easy to find in the online documentation: "Additionally, the following parameters are available as part of our commercial subscription: " .........by itpp2012 - How to...
If upstream returns the error then that's where the problem lays, have you checked if your upstream has set some limits somewhere?by itpp2012 - Other discussion
Good to know, but invest some time to convert this into a map (https://www.google.nl/#q=nginx+map+regex) because even-though 'if' is very powerful it should only be used to stop handling a request. if (...) { return ... } is ok because the location block exits. if (...) { set x y; set a b; ... } is not ok because in some weird cases 'set a b' can run before 'set x y'. Just doing a 'set' (by itpp2012 - Ideas and Feature Requests
No, http://www.nginxtips.com/why-doesnt-nginx-support-htaccess-files/ However you can write some sort of htaccess processor in Lua and use Lua caching to prevent continues IO calls.by itpp2012 - Ideas and Feature Requests
Maxim said that in the other forum. You may have to manually clear the cache to see if this happens again.by itpp2012 - How to...
semseoymas Wrote: ------------------------------------------------------- > httpxxxxx.comGET/wp-content/themes/sahifa/timthumb.php?src=/wp-content > /uploads/2015/11/Alondra.jpg&h=125&w=272&a=c > httpxxxxx.comGET/wp-content/themes/sahifa/timthumb.php?src=/wp-content > /uploads/2015/11/Alondra.jpg&h=50&w=50&a=c Given the added values "&h=50&by itpp2012 - How to...
> proxy_cache_key $cache_uri; Try: proxy_cache_key $scheme$host$request_method$request_uri;by itpp2012 - How to...
A simple 'hack', compiles and works, untested if port is coming from correct pool. http://pastebin.com/ZarS2nQd Raw code http://pastebin.com/raw.php?i=ZarS2nQdby itpp2012 - Nginx Mailing List - English
lakarjail Wrote: ------------------------------------------------------- > Thank you for your answer. > Could you please describe technically the "protected vault" for Debian > you have in mind as a solution? https://wiki.debian.org/TransparentEncryptionForHomeFolderby itpp2012 - Nginx Mailing List - English
Assuming the cert files are not kept open, you could store them in a protected vault with the password in them, place them (copy from vault) where nginx wants them, close vault, start nginx and overwrite/remove the files.by itpp2012 - Nginx Mailing List - English
Almost what you want http://stackoverflow.com/questions/9281564/nginx-auth-basic-for-everything-except-a-specific-locationby itpp2012 - How to...
Have you tried tools like openload and such? apache benchmark does a burst and not a sustained pull which can easily get stuck on one worker.by itpp2012 - Other discussion
Have you tried something like: scgi_param DOCUMENT_NAME $document_root; fastcgi_param DOCUMENT_NAME $document_root;by itpp2012 - Ideas and Feature Requests
![]() |
![]() |
![]() |
![]() |
|