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

How to config root_url when grafana serve behind reverse proxy such as ingress-nginx

I am now trying to deploy the grafana service under the https://example.com/monitor path, Traffic is coming in through ingress-nginx, here is my ingress-nginx config apiVersion: networking.k8s.io/v1 kind: Ingress metadata: name:…
0
votes
0 answers

default address in url of ts package in nginx m3u8

we are broadcasting live using the nginx rtmp module. https://serverip:1935/hls/ahmet.ts to https://sitename.com//proxy?container=focus&refresh=1&url=https://serverip:1935/hls/ahmet.ts I need to give a default link in front of .ts, how can I do…
Recep
  • 1
  • 1
0
votes
0 answers

NGINX Proxy Manager Probleme

I am currently having problems with NGINX Reverse Proxy. I have the Nginx Proxy Manager running as a container. I am doing normal port forwarding here but unfortunately the site is not working properly. Some HTTP requests suddenly come with errors…
Luca B.
  • 1
  • 2
0
votes
0 answers

Django 4.2 and NGINX - The page isn’t redirecting properly

I am trying to add ssl to my test django server that is on AWS. I followed a tutorial to add ssl with certbot, add the proxy_pass but I never got it to work, so after three days trying all kinds of things, I give up. Could you guys please have a…
Steve
  • 1,028
  • 7
  • 25
  • 42
0
votes
0 answers

nginx - nginx's reverse proxy returns index.html for static resources if proxy_pass contains variable

I have the following nginx config (nginx is hosted in docker as well as a proxied resource): location /coverage-22.1/ { resolver 127.0.0.11 valid=30s ipv6=off; set $url coverage-report-22.1; proxy_pass http://$url/; } I use the $url variable…
Roman Resh
  • 165
  • 4
0
votes
0 answers

K8s - IdentitySever4 - Nginx - Error returned from introspection endpoint: Gateway Time-out

We need help on a critical issue we face in the K8s environments. The problem is not reproducible on the windows or docker-compose instances. The final user perceives it as a system performance issue. We discovered that after calling various APIs…
0
votes
0 answers

Cannot connect to local Janus server from remote machine

I'm trying to learn how to set up a Janus server on a local machine. I am new to networking and servers so I could really use some help. I followed the instructions in the github and installed the Janus server, and also tried setting up an Nginx…
0
votes
0 answers

NGINX 404 not found when trying to reverse proxy a NoVNC server

So I am currently setting up a default.conf file in nginx to reverse proxy an IP that is currently setup using NoVNC to have a virtual machine running on it, but when making the config file (I am very new to this go easy on me) I cannot seem to get…
0
votes
0 answers

Nginx reverse proxy requires internal port to work when redirecting traffic to Docker host machine

I've been using a Linux host machine with several docker containers running with one of those as Nginx Proxy Manager (from now on: NPM), which is just Nginx with a friendly UI. NPM exposes ports 80 and 443 and redirects traffic to each container as…
DomingoSL
  • 14,920
  • 24
  • 99
  • 173
0
votes
0 answers

Nginx Reverse Proxy configuration results in 404

I have setup a singular nginx server which needs to manage a CMS service with a Nuxt Front End. Currently navigating to both http://localhost and http://localhost/cms results in 404 from Nginx. With the docker-compose port binded 3000:3000 on the…
0
votes
1 answer

making a sticky cookie/session without NginxPlus

I'm having a hard time making a connection sticky on my nginx.conf file. the current architecture is as follows events {} http { upstream flask-app { server flask-app:5000; } server { listen 80; location /…
0
votes
0 answers

NGINX reverse proxy does not handle multipart form for larger requests

I have an NGINX configuration that sends FormData to another backend service. When the formdata uses only one file, it sends the data to the backend without a problem. However, once I add more data and files, and the request gets larger.. NGINX…
0
votes
1 answer

Problem Running IPAddress:portNumber in Nginx

I am trying to run a nodejs server by using reverse proxy in Nginx from a private server. lets imagine the port of the server is 192.168.1.10. So when I type 192.168.1.10:12752 to the browser, I want to reach out to the server. However I failed in…
Codecygen
  • 121
  • 1
  • 1
  • 10
0
votes
1 answer

NGINX: Use variable for scheme in proxy_pass

I'm trying to use a different scheme for the proxy_pass rule based on the value $host variable. However it doesn't seem to work, here's the behavior we're observing. If we set proxy_pass with a constant scheme like this proxy_pass https://$upstream;…
pAkY88
  • 6,262
  • 11
  • 46
  • 58
0
votes
1 answer

Why am I not able to create an NGINX server for my FASTAPI

I am trying to setup NGINX to run FASTAPI. I am trying to run FastAPI using nginx on AWS EC2 instance. I first ran the following command to create a nginx proxy_server: sudo nano /etc/nginx/sites-enabled/fastapi_nginx After that I wrote the…