Re: Как сделать auth request при SSI?
BorisK2
nginx-forum на forum.nginx.org
Вт Май 23 22:10:32 UTC 2017
Спасибо!
Свою задачу я решил следующим образом:
test1.html
test1
<!--# if expr="$allow_test2 = 1" -->
<!--# include file="/test2.html" -->
<!--# endif -->
Конфиг:
map $cookie_user_id:$request_uri $allow {
default 0;
1234:/path/page1.html 1;
4567:/path/page1.html 1;
}
server {
ssi on;
location = /test1.html {
}
location = /test2.html {
internal;
}
}
Posted at Nginx Forum: https://forum.nginx.org/read.php?21,274370,274416#msg-274416
Подробная информация о списке рассылки nginx-ru