echo-server
echo-server copied to clipboard
Support to config app root
eg:
# start
PORT=8080 APP_ROOT=/app echo-server
# access
curl localhost:8080/app/
Thx.
Hi, thanks for the request. Can you explain why this is necessary? The server will respond to requests for any path.
Hi, thanks for the request. Can you explain why this is necessary? The server will respond to requests for any path.
/.ws & /.sse must be in the root path. I want to combine the echo server with other servers.
Like this: /app -> echo-server /serverA -> server a /serverB -> server b
Is this resolved by #32 ?
Or #35?
As of v0.3.7, the .ws
and .sse
endpoints are served from any "directory", which I believe solves this issue.
As of v0.3.7, the
.ws
and.sse
endpoints are served from any "directory", which I believe solves this issue.
sry, it's too late to reply. it works! thank you.