| File | Date | Author | Commit |
|---|---|---|---|
| html | 2022-01-02 |
|
[d65165] Adjust general page layout |
| .gitignore | 2021-12-27 |
|
[e60548] Adjustments for first working version |
| LICENSE | 2021-12-25 |
|
[d067e9] Update readme, add license file |
| Readme.md | 2022-01-02 |
|
[8e4e49] Add nginx command and book link |
| agenda.org | 2022-01-02 |
|
[2d7234] Add todo |
Web app example for blog F7L8C9.
Licensed under the MIT License. See file LICENSE.
Use curl --head http://localhost/ to request headers only.
JavaScript allows trailing commas.
var list = [
1,
2,
3,
];
Use template literals (aka template strings) to embed variables in strings or create multi-line strings.
var name = 'John';
console.log(`string text line 1
Hello, ${name}!
string text line 3`);
Common commands.
nginx -s stop fast shutdown
nginx -s quit graceful shutdown
nginx -s reload changing configuration, starting new worker processes with a new configuration, graceful shutdown of old worker processes
nginx -s reopen re-opening log files
List nginx processes.
tasklist /fi "imagename eq nginx.exe"