clarified cgi situation I hope

This commit is contained in:
jan6 2021-10-10 23:00:06 +03:00
parent b1e319c111
commit b6633d3aeb
1 changed files with 3 additions and 4 deletions

View File

@ -12,10 +12,9 @@ your `~/public_html` directory is served at:
static content are served normally, but there are also some dynamic options:
- php: `.php` extension
- python: `.py` extension
- lua: `.lua` extension
- shell: `.sh` or `.cgi` extension
- cgi scripts: name it whatever you want and place the executable file in `cgi-bin/`
- CGI scripts
CGI script have been traditionally limited to any executable file in `/cgi-bin/`.
however, we've set them to also allow running from anywhere, as long as they're executable and end in `.cgi`, `.py`, `.lua`, or `.sh` extentions
<!-- TODO: add chmod in getting-started? -->