Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ggjulio authored Aug 26, 2021
1 parent 77f6f3b commit 4f54c6e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,17 @@

#### Config file should be able to :

- [ ] choose the [port and host](http://nginx.org/en/docs/http/ngx_http_core_module.html#listen) of each "[server](https://nginx.org/en/docs/http/ngx_http_core_module.html#server)"
- [ ] setup the [server_names](http://nginx.org/en/docs/http/server_names.html) or not
- [ ] The first server for a host:port will be the default for this host:port (meaning it will answer to all request that doesn’t belong to an other server)
- [ ] setup default [error pages](http://nginx.org/en/docs/http/ngx_http_core_module.html#error_page)
- [ ] limit [client body size](http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size)
- [x] choose the [port and host](http://nginx.org/en/docs/http/ngx_http_core_module.html#listen) of each "[server](https://nginx.org/en/docs/http/ngx_http_core_module.html#server)"
- [x] setup the [server_names](http://nginx.org/en/docs/http/server_names.html) or not
- [x] The first server for a host:port will be the default for this host:port (meaning it will answer to all request that doesn’t belong to an other server)
- [x] setup default [error pages](http://nginx.org/en/docs/http/ngx_http_core_module.html#error_page)
- [x] limit [client body size](http://nginx.org/en/docs/http/ngx_http_core_module.html#client_max_body_size)
- [ ] [setup routes](http://nginx.org/en/docs/http/ngx_http_core_module.html#location) with one or multiple of the following rules/configuration (routes wont be using regexp):
- [ ] define a list of accepted HTTP Methods for the route
- [ ] define an HTTP redirection.
- [ ] define a directory or a file from where the file should be search (for example if url /kapouet is rooted to /tmp/www, url /kapouet/pouic/toto/pouet is /tmp/www/pouic/toto/pouet)
- [ ] turn on or off directory listing
- [ ] default file to answer if the request is a directory
- [x] turn on or off directory listing
- [x] default file to answer if the request is a directory
- [ ] execute CGI based on certain file extension (for example .php)
- [ ] You wonder what a CGI is ?
- [ ] Because you won’t call the CGI directly use the full path as PATH_INFO
Expand Down

0 comments on commit 4f54c6e

Please sign in to comment.