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
1 answer

Difference between http2_max_field_size and large_client_header_buffers?

On my Nginx server, I have some unwanted log : [warn] the "http2_max_header_size" directive is obsolete, use the "large_client_header_buffers" directive instead Is it possible to remove those log ? If not, could you please help me understand how to…
Glitch
  • 31
  • 1
  • 9
0
votes
1 answer

How to Recycle NGINX Processes when proxy_pass timeout occurs?

Inside of my nginx config file, I have several endpoints that use proxy pass to another server which hosts static files. My current settings within the individual site config file is as follow: location /some_location { proxy_pass…
0
votes
0 answers

Redirecting to other url when specific url is called from the browser through nginx

I have hosted my JavaScript application in aws ec2 server. I'm using centos 7 and placed my JavaScript static files in /usr/share/nginx/html directory. I'm using nginx as reverse proxy.I have one yaml file inside this JavaScript files that is…
0
votes
0 answers

can't link my mongodb compass application(local machine) with database in a digital ocean droplet

I had created a droplet in digital ocean and tried to visualize my hosted database in my local machine (ubuntu 20.04). So the workflow is Database (droplet) <-> nginx (droplet) <-> MongoDB Compass (local machine). I tried to expose a specific port…
0
votes
0 answers

Nginx proxy pass is having 502/504 error and cannot reach the backend

I have a react project deployed inside an nginx docker container which is deployed on k8s which is on AWS. I have a backend service which is deployed also on aws and I have a url to access it. It can be accessed directly on browser, on postman or my…
0
votes
1 answer

Custom installation of docker nextcloud

I'm trying to configure my nextcloud on my digitalocean server (debian 11). Using nginx proxy manager and nextcloud under docker I change the root directory of the docker-compose (since I was out of disk space, I added a volume and mounted it at…
0
votes
0 answers

NGINX throwing 400 whenever the request is having headers key with space

In below request, second header is having space which is causing the issue. If we remove it and hit the API it works fine otherwise 400 bad request error. The same curl was working until 1.17 NGINX version, but after that we are facing the…
0
votes
0 answers

nginx(-proxy) configration for a multi docker-compose setup with GitLab and wordpress webserver

I am in the process of configuring my first nginx proxy, which unfortunately does not conform to any standard configuration either. About the infrastructure: We have a vServer running a Gitlab including embedded Mattermost. These services are…
0
votes
0 answers

Eliminate port in the url with nginx

`I want to connect to containers via nginx location blocks without making the port visible in the url for a large scale application my current block is: location ~"/name/(.*)/(.*)/([0-9])/"{ set port $3; proxy_pass…
0
votes
0 answers

nginx reverse proxy always redirects including the port, how to remove

I am trying to redirect calls from 127.0.0.1:3001 to subdomain.example.com but I am unable to achieve this. It only works when I add port to the domain i specified. subdomain.example.com:3001 this works. How do I ignore the port. Below is my…
0
votes
1 answer

Cant Use a Subdomain in NGINX Proxy Manager

I'm trying to set up the NGINX Reverse Proxy Manager on my Docker. Now I have a DynDNS address and I work with the proxy manager because I can reach the default page of nginx proxy manager over the dyndns address. When i try to connect a port with…
0
votes
2 answers

Nginx multiple server with different port

I'm trying to serve : one django back-end , 2 reactjs front-end . the back-end work well but for the front-ends only one of theme work . this is my nginx and front-end Dockerfile : FROM node:lts-alpine3.12 as build1 WORKDIR /frontend COPY…
0
votes
0 answers

Shopware5 with a reverse proxy forwarding issue

I have installed shopware5 in a docker container and made it to go out with a reverse proxy nginx. After the installation, the main page of the website works, but when I click on any of it's tabs, it forwards to the container directly and changes…
0
votes
0 answers

How to pass cookie (django session id) in redirect using Nginx?

I've some problems. I have service main.example.com based on Django framework and service service.example.com based on fastAPI. In service.example.com absent User authentication. To get access, I use Django session id. In sub-service when user…
0
votes
0 answers

Nginx Configuration for react production deployment

In the React project, I used proxy in package.json to route the traffic of backend api calls to the backend server address.enter image description here. And in the project, I used axios to send requests such as: enter image description here I do not…
1 2 3
99
100