Re: session persistence for non browser based services
niharika.jain@validsoft.com Wrote:-------------------------------------------------------> yes, we already have a program generated session id which is passed in> request-response to maintain...
View ArticleRe: session persistence for non browser based services
Thanks. I read about it. Are you aware of the configuration required for the same. Standard way isupstream backend {hash $request_uri consistent;server backend1.example.com;server...
View ArticleRe: session persistence for non browser based services
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/4410004And then you can use it in hash.
View Articlemultiple nginx reverse proxy
helloi am trying to setup multiple nginx reverse proxycurrent i have 1 reverse proxyexample.com point to reverse proxy ipand this is the config in reverse proxy serverserver {listen 80;server_name...
View ArticleNginx + Tomcat - Issues when redirecting to SSL
Apologies first of all, because I basically have no idea what I'm doing, so please be patient with me!I'm trying to install my SSL and to use Nginx as frontend of my Tomcat applicationI got my SSL...
View ArticleRe: Server redirect without rewrite rules in Nginx config
Hello,thank you for reply.It should not check files every request. It can cache it.Or will it be easier to use file with list of redirects in site root (aka .htaccess with Apache) in NginX config...
View ArticleRe: Server redirect without rewrite rules in Nginx config
About the validation of config files:I trust users enough to give them freedom on their site (hostname), but I don't give them permission to affect other sites in the same server.So if there is some...
View ArticleRe: Server redirect without rewrite rules in Nginx config
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...
View ArticleReverse Proxy, basic-basic config.
A IIS server is located on 172.16.16.11 thats host a website on port 80My Nginx-server is located on 192.168.1.49. (CentOS 7)The DNS server points to the 192.168.1.49 machine with the A record of...
View ArticleRe: Reverse Proxy, basic-basic config.
My whole nginx.conf looks like this:user nginx;worker_processes 1;error_log /var/log/nginx/error.log warn;pid /var/run/nginx.pid;events {worker_connections 1024;}#http {# include...
View ArticleRe: Reverse Proxy, basic-basic config.
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...
View ArticleRe: Reverse Proxy, basic-basic config.
I got it to work. Hmm, seems I had to use the /etc/nginx/conf.d/default.conf file to add it into.
View ArticleWhat is the path for the environmental variables file in Nginx?
In Apache I store my secret keys for environmental variables in ~/.profile:export HMAC_SECRET=123Running the command `printenv | less` in Ubuntu terminal, is giving me the content of the key.I tried...
View ArticleNew Relic plugin setup error
We tried integrating the NewRelic agent plugin and encountered error with unpacking the .deb file.So I forced over-write with dpkg -i --force-overwrite...
View ArticleRe: session persistence for non browser based services
Thank you for all inputs. Right now I am trying the sticky module in nginx open source.Has anyone used sticky module? I am not able to understand the configuration present...
View ArticleRe: Getting errors trying to compile nginx on AIX 6.1
I came across the same problem...It seems the 'inline' keyword is not recognised by AIX. I changed the definition of ngx_inline in ngx_config.h to make it compile.
View ArticleCompile nginx from source with 3rd party modules in windows
Hi..I am new to nginx and have set it up on my windows machine. I want to include a 3rd party module -Sticky module.But I need to include it in source and recompile it from source.Could not understand...
View ArticlePermission on /var/www folder
Hello everyone!I need to know if making www-data owner of the full /var/www map with the following permissions is safe;When I do ls -l in my var/www map I get the following results;drwxr-sr-x 5...
View Article