nginx-reverse-proxy Questions
2
I'm configuring an NGINX Reverse Proxy.
On the browser I go to:
client url: https://www.hollywood.com
Then the web page above needs to do requests to:
server url: https://server.hollywood.com/api...
Galba asked 9/6, 2018 at 6:58
1
i use nginx as a reverse proxy to connect a api. The problem is when i send a query after add or remove something. Nginx send me the old json value. I tried to disabled cache but it's not working.
...
Adanadana asked 10/1, 2019 at 20:13
0
This works in my Nginx config:
# This works
proxy_pass http://GitLab-CE:9080;
... but this does not:
# does not work
set $upstream_gitlab GitLab-CE;
proxy_pass http://$upstream_gitlab:9080...
Stairs asked 4/4, 2019 at 14:13
2
Solved
I'm currently trying to create a reverse proxy for two Angular apps.
I want the apps to be both accessible through the 443 port of the docker host with SSL enabled (like https://192.168.x.x/app1 an...
Byelorussian asked 12/9, 2018 at 8:44
1
Solved
How to start Nginx as service with this module?
According to this documentation, it says:
This module is not built by default, it should be enabled with the --with-http_sub_module configuratio...
Shandeigh asked 5/3, 2019 at 13:42
2
Solved
I have an application running on localhost listening on port 8080
nginx is running as reverse proxy, listening on port 80
So, a request coming to nginx on port 80 is sent to this application list...
Muckrake asked 3/3, 2019 at 2:43
1
Since my app has background tasks, I use the Flask context. For the context to work, the Flask setting SERVER_NAME should be set.
When the SERVER_NAME is set the incoming requests are checked to ma...
Lourdeslourie asked 24/4, 2018 at 12:39
2
Solved
I have ngnix proxying to a nodejs server. I am trying to read the request client ip address/host name in my nodejs, but it's always
::ffff:127.0.0.1
But in my nginx access log, I can see the cl...
Ultraviolet asked 24/8, 2017 at 21:33
2
Solved
I have noticed that when ever I start nginx with ubuntu command nginx and I do systemctl status nginx. It shows that systemctl is disabled. More over if I first start nginx with command systemctl s...
Semibreve asked 3/1, 2019 at 6:23
1
To start with: I am NOT an nginx expert. Very much a newbie to it.
I am attempting to protect a 3rd party piece of software with nginx doing the authentication (really - just verifying that the re...
Omnibus asked 21/12, 2018 at 18:51
1
I need to route traffic based on the http request origin. I have two environments and we need to redirect every http request for "/us-en" to Environment1 and others to Environment2 using "$http_ref...
Yeager asked 11/12, 2018 at 6:57
2
Solved
I'm currently working on a JS Project, that uses the url path. Now if I go on my website with example.com/, the JavaScript won't work, because I actually need example.com/index.html.
I'm already ...
Anamorphism asked 8/9, 2017 at 10:49
1
Solved
I am building an application where I need to do some analytics on the api-data combination usage.
Below is my nginx configuration -
location /r/ {
rewrite /r/(.*)$ http://localhost:3000/sample/r...
Pudency asked 2/10, 2018 at 6:32
2
I'm using nginx as a reverse proxy for a http service using a configuration like this:
location /jobexecutor/ {
proxy_pass http://jobexecutor:8080/jobexecutor/;
proxy_set_header Host $host;
pro...
Trisomic asked 18/9, 2018 at 9:15
1
When I try to start the nginx server with this configuration I get an error
nginx: [emerg] no ssl_client_certificate for ssl_client_verify
My Configuration looks like
# HTTPS server
server {
...
Rotative asked 17/4, 2018 at 18:46
1
Solved
I am struggling with signalr3 and nginx reverse proxy configuration, my nginx cfg looks like this:
server {
listen 80;
server_name my.customdomain.com;
location / {
root /pages/my.customdomain....
Bondswoman asked 19/6, 2018 at 21:54
1
i want to configure a nginx as a reverse proxy to forward HTTP Requests to a external Cloud-API. This nginx
But i got a Connection refused error.
29 09:19:02 [error] 7#7: *2 connect() failed (1...
Benedick asked 29/5, 2018 at 9:29
1
I’m new to NGINX and I am migrating a server. I haven’t finished everything on the new server, so I want it to match to the new server, unless that resource or path doesn’t exist. If so, I want to ...
Fiction asked 17/4, 2018 at 1:14
1
I have a NGINX set up with reverse_proxy and caching (only caching multiple requests for very short time). The backend nginx calls is running locally (reverse proxy address is localhost:8092).
The...
Almeida asked 23/1, 2018 at 7:38
2
Solved
Im trying to limit the number of concurrent connection to servers in my Nginx ingress.
is max_conns supported in Ngnix ingress? how can i edit or add it?
max_conns=number
limits the maximum nu...
Hasty asked 7/2, 2018 at 8:46
1
Solved
I've got a site called http://example.com, with an app running that can be accessed at http://example.com/app1. The app1 is sitting behind an nginx reverse proxy, like so:
location /app1/ {
proxy...
Breastfeed asked 7/10, 2017 at 22:9
1
Solved
I have nodejs and nginx running i am sending an additional header in the API 'api_key' and its not received in req.headers and req.get('api_key') in nodejs i have bellow configuration file for ngin...
Bennion asked 25/9, 2017 at 6:30
3
Solved
With the release of TCP load balancing for the Nginx community version, I would like to mix OpenVPN and SSL pass-through data. The only way for Nginx to know how to route the traffic is via their d...
Mentality asked 12/1, 2016 at 10:46
1
I am using NGINX as a reverse proxy to an upstream server.
Is there any way that I can limit the number of simultaneous connections NGINX establishes to the upstream server?
The desired behaviour i...
Bik asked 17/6, 2016 at 10:32
© 2022 - 2024 — McMap. All rights reserved.