yaws
yaws copied to clipboard
Yaws webserver
this fix allows yaws to receive data over 64MB in size. open an erlang shell, start a tcp listener, send 256M + 1B and connect to it with: `spawn(fun() ->`...
This allows the user-defined crash function `crashmsg/3` to get the actual stacktrace term.
This does a static mirror of the Yaws web page for publication as github pages on erlyaws.github.io. Fixes #486
It would be good to publish the Yaws documentation on a static github pages site. [0] [0] https://docs.github.com/en/pages/getting-started-with-github-pages/creating-a-github-pages-site
Necessary changes for deprecations, obsoletions, and refactorings would be uncovered earlier if Yaws had CI tests for OTP master and maint branches.
The user-id part of the basic authentication header value should not contain control characters. This should be validated and handled accordingly. RFC 7617 The 'Basic' HTTP Authentication Scheme Section 2....
Using a simple table created as follow: ``` -record(person, {id, name}). mnesia:create_table(person, [{attributes, record_info(fields, person)}]). ``` The `select_pattern` function will return the pattern `{person, [], []}`, and I don't quite...
We used yaws server with embedded mode and the server can be started to process some requests. HAProxy is used in front end to monitor yaws cluster nodes and receive/dispatch...