Rewrite 404 in subdir to parent dir
Hi,The expected behaviour I'm looking for is the following exampleswww.test.co.uk/category/product404page > www.test.co.uk/category/www.test.co.uk/anothercategory/morecategories/product404page >...
View ArticleRe: Nginx subdirectory for owncloud (can it be done?)
Hi Kenkron,I tried it on a RPi with the instructions from http://www.aelog.org/install-owncloud-in-a-subdirectory-using-nginx/ and it works for me. Just change the root directory and collect the...
View ArticleHow to compile Nginx from source
Hi all,I'm Nginx newbie, I read Beginer & Wiki Guide and I want to compile Nginx from source. My Nginx server will work as Web server + Caching + Reverse Proxy (load balancing) , my server Centos...
View ArticleRe: How to compile Nginx from source
I can bypass "[emerg] open() "/opt/nginx/conf/proxy_params" failed (2: No such file or directory) in /opt/nginx/site-enabled/proxy.conf:8" by creating /opt/nginx/conf/proxy_params...
View ArticleRe: How to compile Nginx from source
rocklee44 Wrote:-------------------------------------------------------> So why Nginx cannot understand parameter max_conns=1024 in> upstreams.conf ?Easy to find in the online...
View Articleneed help with unknown directive error
I'm currently getting the following error with nginx:$ sudo nginx -tnginx: [emerg] unknown directive "sd#" in /etc/nginx/sites-enabled/default.save:27nginx: configuration file /etc/nginx/nginx.conf...
View ArticleRe: How to compile Nginx from source
Oh sorry I missed that, thank you very much, I excluded parameters are available as part of commercial subscription and my Nginx works properly now.
View ArticleRe: Problem using EWS part of exchange
Hi, i'm really ashamed, i totaly missed your reply and never found the solution !now when doing https://mail.domain.com/ews/exchange.asmx i can enter with password with no problem, great !For the time...
View Articlemod_fcgid timeout
hey guys im getting the following error when running a script on my server:mod_fcgid: read data timeout in 120 secondsEnd of script output before headers: index.phpi've being trying to source how to...
View Articlesession persistence for non browser based services
Hi,I have non browser based RESTFul services(coming from another proxy server). I am using NGINX for load balancing.For stateless requests, I am using round robin method.Need to implement stateful...
View ArticleRe: session persistence for non browser based services
This might help: http://dgtool.blogspot.nl/2013/02/nginx-as-sticky-balancer-for-ha-using.html
View ArticleRe: session persistence for non browser based services
Thank you. Really good info. But not sure if cookies will work for non browser based requests.Anyone else has any other approach?
View ArticleRe: session persistence for non browser based services
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...
View ArticleRe: session persistence for non browser based services
Http requests from users fromdifferent ip address--> Goes to a client Server-->Through an API provided by MyProject, requests are sent to Myproject Server through a load balancer(ip address is...
View ArticleRe: session persistence for non browser based services
Hmmm,--Flow--:1. Clients2. 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...
View ArticleRe: need help with unknown directive error
Solved it, stupidly misread the error output. Apparently I duplicated the default file into default.save. There also was a typo in the duplicated config, which was the "#sd". Removed default.save and...
View ArticleRe: session persistence for non browser based services
-Flow--:1. Clients2. Client server(not maintained by us)3. Client requests (REST API service calls)4.Load balancer5, Myproject servers (3x) responds to services.MyProject server creates a session id...
View ArticleRe: session persistence for non browser based services
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 ?
View ArticleRe: session persistence for non browser based services
niharika.jain@validsoft.com Wrote:-------------------------------------------------------> MyProject server creates a session id and sends it back in case of> stateful calls, back to the client...
View ArticleRe: session persistence for non browser based services
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.
View Article