map $check_params $resticted_params {
default 0;
one:two 1;
}
server {
# ...
location /ajax {
set $check_params "$arg_paramone:$arg_paramtwo";
auth_request /check_params;
allow 1.1.1.1;
allow 1.1.1.2;
deny all;
satisfy any;
# proxy_pass или что-то что нужно
}
location = /check_params {
internal;
if ($resticted_params) {
return 403;
}
return 200;
}
}
app.options('/user', cors());
app.post('/user', cors(), ....);
?.
без пробелов.===
или ++
.Сокращённое CSS свойство background устанавливает сразу все свойства стиля фона
while read host port; do
telnet $host $port
done < filename
$ while read host port; do echo "telnet to host $host with port $port"; done < filename
telnet to host 1.1.1.1 with port 5433
telnet to host ya.ru with port 80
telnet to host google.com with port 443