Nginx reverse proxy redirection
Hi, I am using Nginx as a reverse proxy and when I login in my web interface I am redirected to the original URL. I would like to avoid it and always keep the "server_name" as URL. Is it possible ?...
View ArticleRe: Nginx reverse proxy redirection
You need to tell the backend (proxy) what it's new external address/port is.
View ArticleRe: Nginx reverse proxy redirection
Look into the configuration of "http://ip_of_the_app:7180/" and change it to what nginx is using.
View ArticleLimit the number of simultaneous connections to an upstream server
I am using NGINX as a reverse proxy to an upstream server. Is there any way that I can limit the number of simultaneous connections NGINX establishes to the upstream server? The desired behaviour is:...
View ArticleRedirect
I am wanting to use nginx to redirect cloud.ventureforth.com to https://129.144.5.35/ords/f?p=1000. I also want ot mask the https: redirect. Here is what I have in my config. server { listen 80;...
View Article500 Internal server error with Suitecrm and Nginx
Hi Guys, Im moving from lighttpd to Nginx, I need to host 2 web applications (mantis and suitecrm) so far I have managed to make it work, but while in suitecrm several link actions trow a 500 Internal...
View Articlenginx 1.10.1 with php-fpm: download all files as index.php (or as index.zip...
Hi, i spend now more than for 10 hours on my nginx.conf around and despair slowly :( My Problem: If you want to surf on my nginx as web-proxy and want to download a file via a web page, this will...
View Articlenginx 1.10.1: how to integrate the icap protocoll || a icap client to...
Hi, I have already done a icap Implementation by squid. Now I must also implement the icap Protocol || a icap client at nginx. I can´t not find anything in the forum or on the Web about nginx with...
View ArticleRe: nginx 1.10.1: how to integrate the icap protocoll || a icap client to...
This is about doing this with images http://leafo.net/posts/creating_an_image_server.html but the idea is the same for icap written in Lua.
View ArticleRe: ERROR USING NGINX AS REVERSE PROXY
i am not sure how to enable debug and check for logfiles? is there any step or method that you can tell me to include in my code? thanks!
View ArticleRe: ERROR USING NGINX AS REVERSE PROXY
https://easyengine.io/tutorials/nginx/debugging/
View ArticleRe: ERROR USING NGINX AS REVERSE PROXY
Still really stuck.... So in the code below now the page is loading but it gives the error server is taking to long to respond or server is not responding at all. server { listen 80; server_name...
View ArticleMultiple requests by upstreams
Hello! How to set up Nginx, so it sent simultaneous requests to different upstream server? For example: upstream backend { server backend1.example.com; server backend2.example.com;...
View ArticleRe: Multiple requests by upstreams
You might be able to code this with Lua, but this should work as well: ........ server backend1.example.com; weight=1 fail_timeout=5; server backend2.example.com; weight=1 fail_timeout=5; least_conn;
View ArticleRe: Multiple requests by upstreams
Thank you! Which configuration should be written on all the upstream servers?
View ArticleHow do I get nginx to use a different config file on boot?
I posted this on askubuntu.com and someone told me that this is the best place to post so reposting here: I'm trying to do something that I consider fairly simple... When Ubuntu boots, I want to start...
View ArticleRe: How do I get nginx to use a different config file on boot?
nginx has a commandline option to tell where to load the config from. -c /path/nginx.conf
View ArticleRe: How do I get nginx to use a different config file on boot?
So how do I get it to use that -c option when it starts when ubuntu boots up? i.e. where is the "meta-config" that tells nginx how to start? If you look at my question you'll see the second option I...
View Article