server {
access_log logs/access.log;
error_log logs/error.log;
index index.html;
listen 202.54.1.5:80 default;
root /usr/local/nginx/html;
server_name example.com www.example.com 0.example.com;
## PROXY - Web
location / {
proxy_pass http://myproxybackend;
if ($http_user_agent ~ MSIE ) {
proxy_pass http://msiebackend;
}
if ($http_user_agent ~ Mozilla ) {
proxy_pass http://mozillabackend;
}
proxy_next_upstream error timeout invalid_header http_500 http_502 http_503;
...
..
}
curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
Когда вы делаете запрос и хотите чтобы curl передал серверу эти сохраненные куки, вы пишете вот это:curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');
<dialog>
display
..show()
и.showModal()
четырёх ethernet интерфейсов
const test = ()=>{};
test();
function init(...params){
/*init vars*/
return ()=>{ /* start code */ }
}
let operation = init(1,2,3,true);
/* ... */
operation(); // exec start code
echo site.com/images/{1..4} | xargs -n1 -P5 wget
echo site.com/images/{1..4} | xargs -n1 echo > ~/file.txt
echo {{001..004},007,{009..011},077,770,1777}
echo {5..6}
echo {{001..004},007,{009..011},077,770,1777}{5..6}
if('krd.site.ru' == location.hostname){
document.querySelector('#address').innerHTML="Мой адрес не дом и не улица";
}
else if('spb.site.ru' == location.hostname){
document.querySelector('#address').innerHTML="WWW.LENINGRAD.SPB.RU";
}
function eventFire(el, etype){
if (el.fireEvent) {
el.fireEvent('on' + etype);
} else {
var evObj = document.createEvent('Events');
evObj.initEvent(etype, true, false);
el.dispatchEvent(evObj);
}
}
eventFire(document.querySelector('.EtoKnopka'), 'click');
document.querySelector()
document.querySelectorAll()
document.getElementsByClassName()
document.getElementById()
document.getElementsByTagName()