| 1 | |
| 2 | == Marisa |
| 3 | HTTP-based temporary file upload system. |
| 4 | |
| 5 | == Server details |
| 6 | * Host: [https://u.chaotic.ninja u.chaotic.ninja] |
| 7 | * Authentication method: [https://en.wikipedia.org/wiki/Basic_access_authentication HTTP Basic Authentication] |
| 8 | * File size limit: 500MiB |
| 9 | * Expiry: 7 days (1 week) |
| 10 | * Upload methods: {{{ PUT }}}, {{{ POST }}} |
| 11 | |
| 12 | == Usage |
| 13 | |
| 14 | === [https://curl.haxx.se curl(1)] |
| 15 | |
| 16 | ==== PUT |
| 17 | {{{ |
| 18 | curl -X PUT --basic --user <username>:<password> https://u.chaotic.ninja/<file> |
| 19 | }}} |
| 20 | |
| 21 | ==== POST |
| 22 | {{{ |
| 23 | curl --basic --user <username>:<password> -F file=@<file> https://u.chaotic.ninja |
| 24 | }}} |