aboutsummaryrefslogtreecommitdiffstats
path: root/license-generator/lighttpd.conf
AgeCommit message (Collapse)Author
2018-11-19Rename `bin/license-generator.rs` to bin/fulfillment.rs`Teddy Wing
Renames the binary. The name "license-generator" no longer seems apt at this point. That binary doesn't actually generate a license, it serves as the webhook endpoint for Paddle's license fulfillment. Our `license` binary handles the actual license generation. The URL I'll be using for the webhook is `/fulfillment`, so this also makes sense from that perspective.
2018-11-13lighttpd.conf: Serve static assetsTeddy Wing
Want to be able to use our static image and CSS assets from the FCGI code when rendering HTML.
2018-11-13lighttpd.conf: Use `license` binary for `/license/download` routeTeddy Wing
2018-11-12lighttpd.conf: Add routes for additional license handlersTeddy Wing
We want another route for a thank-you page, and a third for a Zip download of the license.
2018-11-08Add lighttpd.confTeddy Wing
Allows us to test the FastCGI script locally. Thanks to this article for describing how to set up a local FastCGI server with Lighttpd: http://yaikhom.com/2014/12/18/handling-requests-c-fast-cgi-and-lighttpd.html Found out how to get the current config directory using `var.CWD` from: https://stackoverflow.com/questions/11702989/lighttpd-conf-document-root-as-directory-containing-config-file/12435777#12435777