Menu

Tree [2d7234] main /
 History

HTTPS access


File Date Author Commit
 html 2022-01-02 M. 'howlingmad' Neifer M. 'howlingmad' Neifer [d65165] Adjust general page layout
 .gitignore 2021-12-27 M. 'howlingmad' Neifer M. 'howlingmad' Neifer [e60548] Adjustments for first working version
 LICENSE 2021-12-25 M. 'howlingmad' Neifer M. 'howlingmad' Neifer [d067e9] Update readme, add license file
 Readme.md 2022-01-02 M. 'howlingmad' Neifer M. 'howlingmad' Neifer [8e4e49] Add nginx command and book link
 agenda.org 2022-01-02 M. 'howlingmad' Neifer M. 'howlingmad' Neifer [2d7234] Add todo

Read Me

Web App Example

Web app example for blog F7L8C9.

Licensed under the MIT License. See file LICENSE.

Tips

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`);

nginx

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"