OY
Size: a a a
OY
А
А
OY
А
ДЦ
А
ДЦ
ДЦ
А
А
ДЦ
А
PP
А
sudo apt install nginx-extras
А
mkdir /var/www/lua
А
nano /var/www/lua/hostanme.lua
А
local handle = io.popen("/bin/hostname")
local result = handle:read("*a")
handle:close()
ngx.say(result)
OY
А
nano /etc/nginx/sites-enabled/default
location /hostname {
default_type 'text/plain';
content_by_lua_file /var/www/lua/hostanme.lua;
lua_code_cache off;
}