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
I have successfully compiled a binary with these modules:
$ ./nginx -V
nginx version: nginx/1.15.12
built by clang 10.0.1 (clang-1001.0.46.4)
configure arguments: --with-stream --add-module=./nginx-module-sts --add-module=./nginx-module-stream-sts
Hi,
I have successfully compiled a binary with these modules:
$ ./nginx -V
nginx version: nginx/1.15.12
built by clang 10.0.1 (clang-1001.0.46.4)
configure arguments: --with-stream --add-module=./nginx-module-sts --add-module=./nginx-module-stream-sts
conf file:
events { }
error_log /tmp/error.log debug;
http {
server {
listen 127.0.0.1:1937;
}
stream {
}
however, when I try to GET any of the endpoints, I get a 501:
$ wget http://localhost:1937/status/format/html
--2019-05-05 11:41:23-- http://localhost:1937/status/format/html
Resolving localhost (localhost)... 127.0.0.1, ::1
Connecting to localhost (localhost)|127.0.0.1|:1937... connected.
HTTP request sent, awaiting response... 501 Not Implemented
2019-05-05 11:41:23 ERROR 501: Not Implemented.
unfortunately there is no error in the logs either.
please advise
The text was updated successfully, but these errors were encountered: