2,788 questions
0
votes
0
answers
39
views
NGINX auth_request does not work with return 204
I'm trying to create an NGINX endpoint that will validate the session using auth_request directive and return the auth-token in a header without a response body. location /whoami block in config below....
0
votes
0
answers
18
views
How to make nginx work on deep links when use detail link
I create a site which domain is https://resume.my.site.
What I'm trying to accomplish is to reverse proxy to https://my.site/resume when a user accesses https://resume.my.site
my config file is like:
...
-2
votes
0
answers
24
views
Kubernetes Ingress Not Routing to Service — Service Works with kubectl port-forward [closed]
I'm trying to expose a simple app (VS Code in container) using NGINX Ingress in Kubernetes, but I'm unable to access it via the Ingress. However, it works fine when I use kubectl port-forward.
Here is ...
0
votes
0
answers
24
views
NGINX reverse Proxy- url configuration
I have three URLs for which I want to do a reverse proxy. (Also, the URLs can have an optional '/' at the end.)
/test
/test/id
test/id/{id_number}
So far I am writing the nginx config for the first ...
0
votes
1
answer
44
views
Getting error while hitting my api using domain - Error 502 Bad Gateway
My backend is in nodejs, hosted on VPS, using nginx for reverse proxy. After certain recent merges I have started getting 502 Bad gateway error
<html>
<head>
<title>502 Bad ...
-1
votes
1
answer
67
views
Nginx reverse proxy HTTPS error : (failed)net::ERR_SSL_PROTOCOL_ERROR
I added a Nginx as reverse proxy for my Node server, my certificates were generated by Let's Encrypt Certbot. Everything works fine when my Node is listening on port 443 and using the certificates, ...
0
votes
0
answers
44
views
HA Proxy Route based Config on different port
I have below haproxy config.
frontend main
bind :443 ssl crt /etc/haproxy/example.uat.pem ciphers DEFAULT:!LOW:!RC4-SHA:!RC4-MD5:!DES-CBC-SHA:!DES-CBC3-SHA no-sslv3 no-tlsv10 no-tlsv11
bind ...
0
votes
0
answers
28
views
net::ERR_SSL_PROTOCOL_ERROR - When frontend calls backend
I have set up a frontend application (React) and a backend application(Java—Spring Boot) on my droplet. I am running an Nginx webserver with SSL certification.
I can't get my front end to call my back ...
0
votes
1
answer
55
views
Nginx reverse proxy setup for redirects
I have an website running in https://localhost:7443/__admin. I have nginx running in the same host in https://localhost:8443.
I want the users to launch the webapp with the url https://localhost:8443/...
1
vote
1
answer
74
views
BioTime login fails with 403 when using HTTPS behind Nginx reverse proxy
We have a ZKTeco MB10 Attendance Device
I have successfully installed it, and connected to the BioTime 9.5 that we are hosting on a VPS,
I have pointed a subdomain record to the the VPS ip address and ...
0
votes
0
answers
17
views
Handling in a reverse proxy configuration, status code 419 is replaced with 500
Local Development Environment.
I have touched a little the template file with which the nginx configurations are generated, the result is the following:
# from nginxproxy/nginx-proxy
# uknp.dock/
...
0
votes
0
answers
22
views
nginx proxy pass issue
map $arg_internal $redirect {
default 0;
"true" 1;
}
server {
#Swap the following two lines to get the redirect working again
server_name developer-nonprod.com;
listen ...
0
votes
0
answers
50
views
LetsEncrypt through Nginx Reverse Proxy 400 Bad Request for Some Hosts
I have an Nginx Docker container routing all HTTP/S requests. HTTPS is working fine but recently LetsEncrypt ACME challenges have been failing for some hostnames routed through this container and I ...
1
vote
0
answers
25
views
Prerendering html if they exist for bots but users use proxy
I'm pretty new to nginx and would love some insight on how to get this to work. Basically I have a proxy set up for my angular app that I want users to use. If it is a google bot, I want to check if I ...
-1
votes
1
answer
82
views
React Router 7 SSR app with Node.js on Linode with Nginx
I have an SSR React Router 7 (framework version) Node.js/Express application that I am trying to wire up to a domain, which is running through Linode. I set up my domain on Linode, and updated ...