This file contains hidden or 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
podman run --name debian9-build -itd debian:stretch bash | |
podman exec -it debian9-build bash | |
cat > /etc/apt/sources.list << EOF | |
deb http://archive.debian.org/debian stretch main contrib non-free | |
deb http://archive.debian.org/debian-security stretch/updates main contrib non-free | |
EOF | |
apt update |
This file contains hidden or 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
=== TEST 93: no memory test | |
--- http_config | |
lua_shared_dict dogs 1m; | |
--- config | |
location = /test { | |
content_by_lua ' | |
local dogs = ngx.shared.dogs | |
local value_small = string.rep("1", 32) | |
local value_large = string.rep("1", 128) |