55,321 questions
-3
votes
0
answers
27
views
I can't log in to NGINX using default values [closed]
I type localhost:8181 and the login panel and if I type [email protected] and password changeme I get the error "Not Found". How can I fix this
docker-compose.yml file:
services:
app:
...
0
votes
1
answer
42
views
WebSocket (WSS) to EMQX via NGINX Ingress Fails
I'm running into a frustrating issue trying to establish a WebSocket connection (wss://ui-dev.url.com/mqtt) to an EMQX MQTT broker behind an NGINX Ingress Controller in a Kubernetes dev environment.
🔍...
0
votes
0
answers
34
views
How to configure Nginx to prompt the user to select a client certificate from OS certificate store (e.g., e-Token on macOS/Windows)?
I'm trying to configure Nginx to require and request a client certificate during HTTPS handshake — specifically in a way that prompts the browser to show the user a selection dialog from the Keychain ...
1
vote
0
answers
28
views
OpenSSL with p11-kit-client.so fails inside Nginx container (but p11tool works via UNIX socket)
I'm setting up nginx inside a Docker container (proxy container) to use a PKCS#11 private key via OpenSSL + engine_pkcs11. The private key is managed by SoftHSM2 in another container (HSM container), ...
-1
votes
0
answers
17
views
Safari Fails to Load Next.js Chunk Files with SSL Errors While Chrome Works Fine [closed]
I'm experiencing a strange issue with my Next.js 13.5.6 I app deployed behind Nginx with SSL via Let's Encrypt.
Everything works perfectly in Chrome, but in Safari, some requests for Next.js chunk ...
-1
votes
0
answers
22
views
RTMP Disconnects quickly when the stream is turned on and No index.m3u8 files are being generated in the assigned directory [closed]
23/4/2025 09:52:58 9408 [INFO] [rtmp connect] id=7K1RWSO1 ip=::1 app=live args={"app":"live","flashVer":"LNX 9,0,124,2","tcUrl":"rtmp://localhost:...
1
vote
2
answers
29
views
How can I serve different html files depending on value of upstream header with nginx
I'm struggling to configure (or actually even understand if it is at all possible) nginx for the following task:
Upstream server returns a custom header VERSION with one of the following values: ver1, ...
-1
votes
0
answers
88
views
Cannot POST error in production but works on localhost
I am encountering a Cannot POST error in my production environment, but the same API endpoint works fine in my local development environment. The issue seems to be specific to the production setup, ...
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....
1
vote
0
answers
48
views
Next.js docker behind nginx, css and js not loaded
I'm running the next 15 as a Docker container behind an Nginx reverse proxy. The website is working as expected in my local network from Docker, but if I expose it via an Nginx proxy, I don't get the ...
-2
votes
0
answers
37
views
connecting to the server [closed]
I build a fullstack project, front+back, I dockerized my project and it's now on a server of Digital Ocean.
I bought a domain and connect it to the server, I tried to "connect" the website ...
2
votes
0
answers
55
views
Handler callback in Nginx 1.24.0 dynamic module is called twice, causing premature IP blocking
I'm a novice in Nginx module development. In a practice project, I need to develop a dynamic module for Nginx 1.24.0 to block high-frequency access IPs. The module needs to count IP accesses. However, ...
0
votes
0
answers
22
views
Tomcat behind Nginx reverse proxy not loading JS or CSS
I've found other questions like this but none of the suggested solutions worked for me.
If I get to the app using http://ip:port/context everything works just fine.
If I go with http://sub.domain.com ...
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:
...
0
votes
1
answer
28
views
What is the ideal way to deploy a large-scale React (Vite) application when the Node.js backend is running independently? [closed]
I'm working on a project that includes:
A React frontend built with Vite
A Node.js (Express) backend that runs independently on a different IP.
I'm trying to choose the best way to deploy the React (...