nginx-reverse-proxy Questions

1

I am new to those technologies. My OS is ubuntu-18.04 and using anaconda to create a virtual environment with pip installation with all necessary package. I also install Chrome and chromedriver wi...

4

I created an API gateway for my application and it will act as a front controller for other microservices. In my production setup I use Nginx as a reverse proxy for my gateway The API gateway is r...

1

Solved

I've got an nginx on my server and I am trying to get it to open the file '/config/www/pp1/index.php' for address https://example.com/pp1 and '/config/www/interpreter/index.html' for https://exampl...

3

I'm trying to create a ReactJS app on a remote Ubuntu server. In order to test it in the browser I'm using the NGinx reverse-proxy features as this. server { listen 80; server_name mentalg.com;...
Arraign asked 23/4, 2018 at 7:39

4

I am new to Nginx server. recently started working nginx project. I have task to set security headers through nginx.conf file. I set some header correctly but not able to set for Set-cookie. My req...

0

Upstream blocks in nginx open source allow you to enable keepalive connections to reverse-proxied servers (docs: http://nginx.org/en/docs/http/ngx_http_upstream_module.html#keepalive). Syntax: kee...

2

Solved

I've created an environment in AWS which includes an EC2 instance with node js web-server and Nginx installed, behind a self-signed application load balancer. My ALB gets requests from HTTPS (443) ...
Toothpaste asked 29/6, 2020 at 17:24

2

I am making the following statement in the Nginx conf: js_import http.js; But it seems to give me unknown directive "js_import" I have verified whether the njs is installed. I can seem to get i...
Prolongation asked 28/5, 2020 at 9:20

2

Solved

k8s ingress controller doesn't pass certificate to upstream https service. with nginx i could achive with something like this location /upstream { proxy_pass https://backend.example.com; proxy...

1

I need to debug a remote java application running behind an nginx reverse proxy. I get the following error: Failed to attach to remote debuggee VM. Reason: java.io.IOException: Received invalid ...
Legalize asked 31/7, 2019 at 16:48

2

Solved

I am hosting a web application inside a Kubernetes 1.13 cluster behind an NGINX ingress controller. The Ingress specifies path: /my-webapp/?(.*) and annotations: { nginx.ingress.kubernetes.io/rewri...
Berhley asked 28/3, 2019 at 10:4

1

Solved

I'm running into the following issue where I would like to be able to access a proxy passed location (React/NextJs webApp in a hosted docker container) from a home website with a trailing slash and...
Petulance asked 21/4, 2020 at 0:56

2

Solved

I'm running nginx via lets-nginx in the default nginx configuration (as per the lets-nginx project) in a docker swarm: services: ssl: image: smashwilson/lets-nginx networks: - backend enviro...
Stowe asked 10/10, 2017 at 7:0

1

I have this situation where a have lots of API´s running on different machines on different ports using Tomcat. I can create the upstream with those IP addresses but how to add the other part of th...
Willock asked 31/3, 2020 at 12:28

0

In a website which uses gin-gonic as webserver and nginx as a proxy server, clients send their data to the server via gin-gonic exposed APIs, and — in order to send server commands to clients — eac...
Facile asked 5/2, 2020 at 14:26

0

I've a VPS on which I want to deploy multiple web applications (for which I've already read posts and they're perfect when we have directly sub container). I want to manage each web application hav...

1

I'm currently using the dialogflow api on a raspberry. Everything works fine when calling StreamingDetectIntent method using grpc. I have to use multiples apis on my product and so, I'm trying to...
Plummet asked 30/8, 2019 at 14:31

2

We have the following config for our reverse proxy: location ~ ^/stuff/([^/]*)/stuff(.*)$ { set $sometoken $1; set $some_detokener "foo"; proxy_set_header Host $host; proxy_set_header X-Real-I...
Incongruent asked 11/11, 2019 at 5:29

1

Solved

What I want is to forward all requests made for: www.domain.com/api/whaterver/comes/next to -> api.domain.com/whatever/comes/next The reason is to avoid browser CORS for www.domain.com requestin...
Sheers asked 19/10, 2019 at 18:41

2

Solved

I'm using java-websocket for my websocket needs, inside a wowza application, and using nginx for ssl, proxying the requests to java. The problem is that the connection seems to be cut after exactl...
Safeconduct asked 29/8, 2018 at 13:1

1

Solved

Gone through HTTP response codes .. and understands the what these response codes(rcodes) stands for But I am not sure what rcode will be sent to client/consumer(say browser) in below scenario. I...

1

I have deployed two namespace in the kubernetes cluster. The namespace A host mysql and namespace B run postgress and expose their service deployment on these ports Namespace(A) - mysql - p...
Dimissory asked 1/8, 2019 at 3:20

1

Solved

I have a nginx deployment in k8s cluster which proxies my api/ calls like this: server { listen 80; location / { root /usr/share/nginx/html; index index.html index.htm; try_files $uri $uri/ /...

2

Solved

I am currently working/testing microcache feature in NGINX reverse proxy setup for dynamic content. One big issue that occurs is sessions/cookies that need to be ignored otherwise people will log...
Siderolite asked 11/7, 2019 at 9:10

1

Solved

I have a NGINX reverse proxy in front of a website. The NGINX server is http2/ready. If I run a test, all seems good: However, when I go to the website using a browser, chrome indicates the webs...
Seavey asked 9/7, 2019 at 12:38

© 2022 - 2024 — McMap. All rights reserved.