54,699 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
-4
votes
0
answers
32
views
Python-SocketIO client frequent websocket disconnect from the server [closed]
Body:
I’m facing persistent WebSocket disconnections in production on Azure App Service (Linux container) during long-running operations (60–120 seconds). The same setup works fine locally in Docker.
...
0
votes
1
answer
64
views
Nginx serving static with fallback in case of 404 [closed]
I'm using Nginx on Debian 12. The goal is to serve static files from two different disks and once the request is received, Nginx looks in the first directory and then in the case of 404 it proceeds to ...
0
votes
1
answer
105
views
502 error with NGINX and Cloudflare - 2 servers [closed]
I've tried much of the advice I've found on here, and it hasn't worked so far.
Here's my network flow:
HTTPS -> Cloudflare -> NGINX (server 1) -> Apache (server 2) -> WordPress
Here are my ...
1
vote
1
answer
91
views
How can I make WordPress handle .php URLs instead of returning a 404 error?
I have a WordPress website hosted on a server (Apache or Nginx). I am facing an issue where .php URLs (e.g., https://example.com/page/test.php) return a 404 error page from the hosting server, not the ...
Advice
1
vote
2
replies
66
views
Turning off buffering in k8s nginx ingress greatly increases client side latency and streaming in downstream
I have the following architecture:
Browser App (React) -> Nginx K8S Ingress -> Streaming Service A (Kotlin, POD) -> Streaming Service B (Java,POD)
From the browser I upload a json array of ...
-1
votes
0
answers
71
views
CORS error only on PUT/DELETE requests between two subdomains (Laravel 12 API + Nginx reverse proxy)
I have a Laravel 12 API running behind Nginx on the subdomain: https://api.lanaya.bf
My frontend (React) runs on another subdomain: https://admin.lanaya.gov.bf and make request by using axios
GET and ...
0
votes
0
answers
47
views
remove nginx word from response footer in nginx
I need to remove nginx word from response footer in nginx which is present here . I have tried using custom error pages which are working for some status codes. However I need it removed from every ...
Satya's user avatar
- 8,901
0
votes
0
answers
95
views
NginX is failing to properly redirect to my node.js, although if I go to the IP:port directly, it works
NginX's .conf file:
server {
listen 80;
listen [::]:80;
root /home/myUsername/serverDirectory;
index index.html index.htm;
server_name my.domain.name;
...
0
votes
1
answer
77
views
Why does Next.js app render CSS on port 3000, but not port 80?
I am trying to deploy a Next.js app on my local machine as a "dress
rehearsal" for deploying on a server.
My Next.js app renders properly (i.e. the human eye will see shapes and
colors in ...
0
votes
2
answers
81
views
API request tracing with NextJS, Nginx and Django
I’m trying to measure the exact time spent in each stage of my API request flow — starting from the browser, through Nginx, into Django, then the database, and back out through Django and Nginx to the ...
0
votes
0
answers
70
views
Deploying a localized Laravel app using Dokku
I am using the laravel-localization package to localize my Laravel app. It works perfectly normal on local enviroment (using php artisan serve) and on shared hosting with Apache.
I've just deployed it ...
-1
votes
1
answer
38
views
Extending Cookie Expiry in nginx
I am using nginx as a proxy between a front end and an API.
When the API returns a token, nginx sets it as a cookie.
The cookie will either have an expiry of 30 minutes, or 14 days if the user ticked '...
0
votes
1
answer
122
views
Laravel API returning HTML instead of JSON when served via NGINX
I’m running a Laravel backend alongside a Vue frontend on NGINX. The issue I’m facing is that my API endpoints are returning HTML instead of JSON. For example:
https://isuecampusmap.site/api/ → ...
0
votes
1
answer
90
views
WhatsApp Cloud API webhook verification fails: "The callback URL or verification token check failed"
i started to listening nginx, and when i press the button confirm and save, no one call or check my website, my nginx console is clear. But i past correct address. I spend to this whole day. Can ...
Best practices
0
votes
2
replies
50
views
How to configure Nginx so that X.509 authentication implemented with Spring Security works correctly?
I have a REST API server application that authenticates users exclusively via X.509 authentication implemented with Spring Security, using the Common Name (CN) from the client certificate directly as ...