summaryrefslogtreecommitdiff
path: root/server/server.scm (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-04-05server: fix binary file outputstuebinm1-2/+3
(previously, it tried to use ascii encoding and would fail)
2021-04-05add simple server which takes POST requestsstuebinm1-0/+101
The idea is that it can accept surveys sent to it. Note that in an actual deployment it should have at least some rate-limiting, since actual validation of input is impossible if they are encrypted – i.e. this is bascially a pastbin. It may, however, be possible to require signing answers for survey with access restrictions, or do a challange/response type thing before allowing submission.