You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
can you share with me your full nginx configuration there seems to be some misconfiguration that results in nginx attempting to fetch "control" from the default html folder of nginx usr/local/nginx/html instead of the location you specified
I am using the nginx-rtmp-module with the following configuration:
`http {
server {
listen 8080;
server_name localhost;
}`
/stat works fine, but when I try to access /control, I get a 404 Not Found error.
The error log shows the following message:
2024/12/22 20:24:38 [error] 10#10: *12 open() "/usr/local/nginx/html/control" failed (2: No such file or directory), client: 10.244.0.1, server: localhost, request: "GET /control HTTP/1.1", host: "192.168.49.2:31001"
When I try using curl http://:31001/control, I get the following response:
"
404 Not Found
nginx "
What could be the possible reasons for this issue? How can I fix it?
The text was updated successfully, but these errors were encountered: