This post will be continuously updated with useful commands related to HTTP.
Python3 HTTP Server
Launches an HTTP server in the current directory for serving files
1python3 -m http.server [port]
cURL - Post Multipart Form
Post two files
1curl -X POST -F "file1=@file1.png" -F "file2=@file2.png" --no-buffer https://chandler.io/test