nginx-reverse-proxy Questions

4

Solved

Here is my website conf (using nginx v1.25.1): # Redirect to https server { listen 80; server_name domain.name www.domain.name; location ^~ /.well-known/acme-challenge/ { root /acme-challenge...
Giotto asked 20/3 at 18:55

2

Any one familiar with nginx? I am trying to enable proxy_protocol in a conditional manner in a stream block ie for certain endpoints I want the proxy protocol header to be added. For others I dont ...
Celestinecelestite asked 7/9, 2021 at 0:10

2

Problem : Nginx Server is buffring the Server sent events(SSE). Setup : Node v12.13.1, Nginx 1.16.1, Chrome v80 Scenario: I tried to turn off buffering with proxy_buffering off; and even added "...
Lynch asked 4/4, 2020 at 13:48

3

I have a server that returns a 301 HTTP redirect url which contains an API key. The redirect hits Nginx and in there I need to add an Authorization HTTP Header that contains the value of the API ke...
Adelaideadelaja asked 23/7, 2020 at 12:31

5

Solved

I got this error in nginx error log: SSL_do_handshake() failed (SSL: error:141CF06C:SSL routines:tls_parse_ctos_key_share:bad key share) while SSL handshaking I use Let's Encrypt currently. Any id...
Bimolecular asked 23/1, 2021 at 1:43

1

I'm using the gitea versioning system in a docker environment. The gitea used is a rootless type image. The http port mapping is “8084:3000” and the ssh port mapping is “2224:2222”. I generated the...
V asked 7/4, 2022 at 21:32

9

Solved

EDIT: Updated the text in general to keep it shorter and more concise. I am trying to configure HTTPS when I run npm run dev so I can test MediaStream and alike locally (for which browsers require...
Retractor asked 10/7, 2019 at 8:6

2

Solved

I've got the following nginx conf: http { log_format upstream_logging '[proxied request] ' '$server_name$request_uri -> $upstream_addr'; access_log /dev/stdout upstream_logging; server {...

19

Solved

I am getting these kind of errors: 2014/05/24 11:49:06 [error] 8376#0: *54031 upstream sent too big header while reading response header from upstream, client: 107.21.193.210, server: aamjanata....
Buckthorn asked 24/5, 2014 at 11:59

3

Solved

I'm trying to make my Nginx a bit more dry, as it's acting as a reverse proxy for nearly 20 servers. Here's what I'm trying to do, all the hostnames and stuff are changed/examples: map $http_host ...
Kibitz asked 1/5, 2018 at 18:6

6

I am using nginx in a standard reverse proxy scenario, to pass all requests to /auth to another host, however I'm trying to use non-standard ports. My end goal is to have the X-Forwarded-Port head...

6

Solved

I'm using nginx as a reverse proxy for my website. I want to be able to open my website in an iFrame from a chrome extension new tab html file. For this, I need my nginx to set X-Frame-Options ...

2

Solved

I am trying for nginx proxy manager (running in a docker container) to connect to another docker container that has port 8080 open on it. When I setup the proxy to connect to 192.168.0.29:8080 the ...
Christophe asked 9/8, 2021 at 15:19

0

Setup Client 1 : a WebPage with SocketIO requesting the server Client 2 : an ESP32 with Links2004/arduinoWebSockets Server : Ubuntu / NGINX redirecting to a Node-RED Problem OK : WebPage connect ...
Stalemate asked 1/7, 2023 at 9:12

4

I'm trying to setting up a reverse proxy that resolve localhost:8081 to a broker installed on an other machine. My Nginx config file is: worker_processes 1; events { worker_connections 1024; } s...
Protochordate asked 7/3, 2022 at 10:51

2

I have created a proxy pass for multi URLs. listen 80; listen [::]:80; server_name ~^(.*)redzilla\.11\.75\.65\.21\.xip\.io$; location / { set $instname $1; proxy_pass http://${instname}red...
Itemized asked 14/9, 2019 at 16:11

2

I have already looked into the answer to RoR 5.0.0 ActionCable wss WebSocket handshake: Unexpected response code: 301 but it was not applicable to my case. I use an nginx-proxy as a front for sev...
Alessandraalessandria asked 11/8, 2018 at 17:54

3

I am using proxy_pass and would like to log the URI used by proxy_pass. I can log every detail like $upstream_addr (IP) of the process except the URI itself. Am I missing something or this is not p...
Amarelle asked 25/7, 2020 at 15:22

4

Solved

I'm trying to set up a Django project with docker + nginx following the tutorial Nginx and Let's Encrypt with Docker in Less Than 5 Minutes. The issue is when I run the script init-letsencrypt.sh I...
Westward asked 20/7, 2021 at 5:29

2

Solved

I'm running nginx in docker. HTTPS works fine but when I explicitly make HTTP request I get the following error 400 Bad Request The plain HTTP request was sent to HTTPS port nginx.conf is as foll...
Proem asked 6/3, 2019 at 16:13

2

Solved

i try redirect to proxy-server nginx. location /phpmyadmin { proxy_http_version 1.1; proxy_pass https://${PMA}:5000/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } ...

2

I am trying to implement a proxy using the nginx configuration The idea is to have a http server hosting my website (my SPA). and having one route on my http server pointing to another api. this ...
Kerge asked 27/5, 2019 at 16:52

1

I would like to forward traffic using (reverse) proxy for both ingress and egress while manipulating the request and response URI's. The scenario is this: Ingress Request from the internet (with re...

1

Solved

I'm using Nginx as a reverse proxy. What is the difference between these headers: proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; In some docu...

3

I am trying to get NGINX to reverse proxy & provide SSL Termination for a WordPress site running on Apache at port 8086. I want NGINX to handle the static files, and proxy only PHP requests to ...
Arrear asked 23/5, 2018 at 15:2

© 2022 - 2024 — McMap. All rights reserved.