Questions tagged [nginx-reverse-proxy]

When a reverse proxy proxies a request, it sends the request to a specified proxied server (http or other), fetches the response, and sends it back to the client, as if it came from the reverse proxy itself.

More information: https://docs.nginx.com/nginx/admin-guide/web-server/reverse-proxy/

2738 questions
0
votes
0 answers

Nginx proxy (or any other else) in Windows 10

I have Docker container (Ununtu) in my host mashine (Win10). And actually I need to use this container as a proxy for some requests in the internet. For example I am making request to https://host1.com/create?test=10. And I should not connect this…
0
votes
0 answers

NGINX Proxy pass, redirect all to one route

I want to redirect all request to specific servers for example: /f - redirect to localhost:8001 /c - redirect to localhost:8000 /c/test - redirect to localhost:8000/test I try this code but all request to any url nginx will redirect to /c and proxy…
0
votes
2 answers

NGINX proxy-pass truncate connection after 60s even with suggested config

It's a few days I'm banging my head on this specific problem. I've got a server that performs an operation that takes more that 60 seconds to complete, everything works ok if I connect directly to the server but if I use nginx (v 1.22.1) after 60…
talpaz
  • 1,956
  • 2
  • 13
  • 14
0
votes
0 answers

Nginx gets slow for a specific proxy backend over the time

`I have nginx pod running and making proxy request to different backend. When it get deployed, it works well for few hours after that it starts taking too much time and getting gateway timeout with 504 status code. Important observation - This…
0
votes
0 answers

NGINX reverse proxy - https://my.org/SERVICE<-> http://192.168.0.x/ possible?

Let's say **Service1 **is wordpress, nextcloud, some DMS or other nice stuff in a private network. Service1 is installed on NGINX at http://localip:1234**/** The url to access service1 has to be https://my.org/**service1** Nothing special I thought.…
Andreas
  • 3
  • 1
  • 3
0
votes
0 answers

Nginx Proxy Manager configuration not valid

hello I tried to paste the code below into the "Advanced" section unfortunately the link is down every time what am I doing wrong? server { listen 443 ssl; server_name ; root…
atakan
  • 1
  • 2
0
votes
1 answer

Nginx redirect a specific subdomain to specific location

I would like it so that when a user types task-manager.example.com, they are automatically redirected to location /api/ without having to type out the full path of task-manager.example.com/api. Only task-manager.example.com should get redirected…
Fahri Can
  • 431
  • 3
  • 13
0
votes
0 answers

Openshift Cluster behind Reverse Proxy

We have an Openshift cluster in IBM Cloud that is in private endpoint. In order for us to connect to the master, we decided to use a Reverse Proxy server. From the reverse proxy, we can curl the https://console.subdomain.domain.com/ But it gives us…
Rafuuu
  • 21
  • 1
  • 3
0
votes
0 answers

Is it posible to use jwilder/nginx-proxy in port 80 for docker apps and local apache in port 81 for undockerized apps?

I've already deployed on my server the jwilder/nginx-proxy and some apps running with docker, and it's working with no problems. Now, I want to deploy some apps that don't have docker using the apache web server installed in my ubuntu server. I've…
0
votes
0 answers

Proxy Pass issue for NGINX, ports showing

when I enter my domain it shows the port at the end of it and the SSL is not working altought I've set it up with certbot, verified domain with txt file and the keys are in the right location. server { listen 443 ssl; listen [::]:443 ssl; …
cFunkz
  • 1
  • 1
0
votes
0 answers

Nginx not serving user-uploaded media(Image) files when Debug=False in settings.py

I have set up a django website that would be served by Nginx, everything was working perfectly not until images stopped showing recently. I tried inspecting the possible cause of this strange development using curl and then realized that the…
0
votes
0 answers

Docker compose nginx router location /api not available on my-project.azurewebsites.net

I am trying to get my docker compose project to work in azure. Locally it works as expected, but in azure the /api location get routes return a 404 not found error from the regular theme, and post routes return a 405 error. I don't have a lot of…
0
votes
0 answers

How to set correct headers for s3 nginx proxy for angular app?

I'm working on an nginx s3 reverse proxy container image to proxy frontend files (Angular apps) from s3 behind an Application Load Balancer. The frontend files are located in the specific folder of the given app name in the s3 bucket. These are…
0
votes
0 answers

Django +Nginx+waitress+AWS Elastic Load balancer-504 Error

I have hosted Djano app on Nginx-waitress architecture.Both are running on different ports on same server.There is an AWS ELB which directs requests to Nginx port. I have a functionality which query database based on user input and produces multiple…
shree
  • 125
  • 1
  • 4
  • 15
0
votes
1 answer

How to fix incorrect nginx s3 reverse proxy paths?

I'm working on an nginx s3 reverse proxy container image to proxy frontend files (Angular apps) from s3 behind an Application Load Balancer. The frontend files are located in the specific folder of the given app name in the s3 bucket. These are…