- This is in responce to this ticket: ecosystem: Add a caddy plugin to serve static files from Minio server. · Issue #3161 · minio/minio
- See also the same setup for Nginx by @harshavardhana
- Note: caddy can't errors from reverse proxy (i.e. 404, 500, etc) as of v0.11.1
- see ticket for more info.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ "keys": [":"], "type": "function", "command": "enter_command_line_mode" }, | |
{ "keys": ["q"], "type": "prompt", "command": "exit", "cursorPosition": -1 }, | |
{ "keys": ["/"], "type": "prompt", "command": "search \"\"", "cursorPosition": -2 }, | |
{ "keys": ["TAB","l"], "type": "function", "command": "focus_next" }, | |
{ "keys": ["SHIFT_TAB","h"], "type": "function", "command": "focus_previous" }, | |
{ "keys": ["UP","k"], "type": "function", "command": "move_up" }, | |
{ "keys": ["DOWN","j"], "type": "function", "command": "move_down" }, | |
{ "keys": ["PAGE_UP","K","u"], "type": "function", "command": "page_up" }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#this is a convenience script | |
#execute this from the project root directory | |
# | |
aclocal -I ./ | |
autoconf | |
autoheader | |
automake -a --include-deps | |
touch NEWS README AUTHORS ChangeLog | |
automake -a --include-deps |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## nuklear option | |
#* linguist-vendored | |
## languag usage | |
*.c linguist-language=c | |
*.cc linguist-language=cpp | |
*.C linguist-language=cpp | |
## Standard documentation | |
AUTHORS linguist-documentation | |
COPYING linguist-documentation | |
ChangeLog linguist-documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// an example to create a new mapping `ctrl-y` | |
mapkey('<Ctrl-y>', 'Show me the money', function() { | |
Front.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).'); | |
}); | |
// an example to replace `T` with `gt`, click `Default mappings` to see how `T` works. | |
// map('gt', 'T'); | |
// an example to remove mapkey `Ctrl-i` | |
unmap('<Ctrl-i>'); |