Questions tagged [upstream]
34 questions
0
votes
0 answers
How to make nginx to proxy to the same instance multiple ports using load balancing upstream
I have an app that uses 2 backend ports. I use nginx to load balance clients to diferent server instances. Each instance has 2 apps running that listens on diferent ports and intercommunicate between itself. Is there an easy way to tell nginx to…

angelovAlex
- 1
- 1
0
votes
0 answers
Why does the deployment "nginx-deploy" exceed its progress deadline error occur?
The docker image stored in the ACR was distributed to the AKS using azure devops pipelines. Then an error occurs.
enter image description here
This is a docker-compose file that creates a docker image for me to use.
# docker-compose.yml
version:…

WorkingInsight
- 1
- 1
0
votes
0 answers
Set Target Kong with Domain in HOST
I developed a new plugin that basically receives a call and directs it, according to some criteria, to a configured target.
To accomplish this targeting, I'm using
kong.service.set_target("server.server", 80)
With that I get an error similar to…

Alfred Souza
- 1
- 1
0
votes
0 answers
How to delete the upstream project reference in a GitLab project?
I forked a GitLab project, and now on the main page there is a panel with this message: "forked from [...] 1 commit ahead of the upstream repository" and a big "Create merge request" button. But I just don't need this upstream repo anymore, so I…

stf
- 591
- 1
- 4
- 19
0
votes
2 answers
git branching advanced usage, rebase from upstream branch
Following up on Git: rebase onto development branch from upstream, basically the same ask as:
I have local master and develop branches. I do all my work on develop and then merge them into master for releases. There is a remote branch,…

xpt
- 20,363
- 37
- 127
- 216
0
votes
0 answers
NGINX as Transparent Reverse Proxy via Upstream Proxy to External Host Issues
Due to a mess of work networks i need to setup an NGINX reverse proxy to an external website that goes via the company MPLS proxy.
This is so other apps can point to an internal DNS address via HTTPS and then that address can either point to an…

Cyber Axe
- 176
- 3
- 7
0
votes
0 answers
Intermittent Error : "upstream connect error or disconnect/reset before headers. reset reason connection termination"
I'm getting this error intermittently on our site upstream connect error or disconnect/reset before headers. reset reason connection termination", once at the start of the day, and it goes away after refresh (not always reproducible as well).
Before…

ShahtajK
- 117
- 10
0
votes
1 answer
Django 'ModuleNotFoundError: No module named 'blog/wsgi' when deploying to Elastic Beanstalk, as well as 'Error while connecting to Upstream'
I am trying to deploy a static Django website to Elastic Beanstalk via the UI 'upload your code' and not the EB CLI. I have created a zip file of all of my contents and have tried uploading it a million times, only to be met with the errors…

RV203
- 1
0
votes
0 answers
Nginx doesn't drop upstream connection when client disconnected
In my app client connect to backend over nginx with WebSockets connection.
My nginx has next config:
server {
listen 80;
listen 443 ssl;
ssl_certificate ...
…

Sergey Shulik
- 950
- 1
- 9
- 24
0
votes
1 answer
Nginx upstream routing issue in EKS cluster
I’ve encountered an upstream routing issue with an application served by Nginx. I’ve run out of ideas and would appreciate any insight into what I need to do resolve it.
The application consists of a frontend written in ReactJS, and a backend…

alanwgmendel
- 1
- 1
0
votes
0 answers
How to build nginx-upstream-module in docker container
When I am trying to build nginx-upstream-module in docker container, I got following error.
./config: line 13: auto/have: No such file or directory
Can anyone help me, how to build nginx-upstream-module in docker container or
what is meant by the…

Vishal Gaikwad
- 21
- 3
0
votes
1 answer
nginx + upstreams and switch upstreams by arg from url
I searched many forums , found many similar topics, but none works for me(
I have this configuration:
upstream 8083 { server 127.0.0.1:8083; }
upstream 8084 { server 127.0.0.1:8084; }
split_clients "upstream${remote_addr}" $default {
50% …

Boris Gelfandbein
- 11
- 2
0
votes
0 answers
Nginx can't resolve server names when loading them from a file
I'm new to nginx and trying to achieve the following behaviour: I want to pass an header to nginx and pass the request to another server based on the given header. I want to load my map from a file so i'm using the following code
worker_processes …

Stav Pistiner
- 1
- 1
0
votes
0 answers
Upstream proxy and CA configuration
I try to configure mitmproxy to work with an upstream proxy in another domain.
To be more explicit, i have a platform with its own domain (e.g mydomain.com) and to access to interne i need to go through my company proxy with its own domain too (e.g.…

DKO
- 1
- 1
0
votes
2 answers
NGINX - Rename Permission Denied While Reading From Upstream
I recently switched from Apache to Nginx. PHP language underneath and using fastcgi_pass to php7.4-fpm to run all script file. Everything seems to be working fine. Pages are working, PHP is executing, all assets loading fine, etc. However my…

RJW
- 21
- 4