text011 = /другая известная фраза с ключевым словом/g,
text011 = RegExp(`\\(.*ключев.*\\)`),
// create a TreeWalker of all text nodes
var allTextNodes = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT),
// some temp references for performance
tmptxt,
tmpnode,
// compile the RE and cache the replace string, for performance
cakeRE = /cake/g,
replaceValue = "pie";
// iterate through all text nodes
while (allTextNodes.nextNode()) {
tmpnode = allTextNodes.currentNode;
tmptxt = tmpnode.nodeValue;
tmpnode.nodeValue = tmptxt.replace(cakeRE, replaceValue);
}
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: true
dhcp4-overrides:
route-metric: 100
eth1:
dhcp4: true
dhcp4-overrides:
route-metric: 110
# ip route
default via 10.0.26.1 dev eth0 proto dhcp src 10.0.26.80 metric 100
default via 192.168.25.1 dev eth1 proto dhcp src 192.168.25.88 metric 110
10.0.26.0/24 dev eth0 proto kernel scope link src 10.0.26.80
10.0.26.1 dev eth0 proto dhcp scope link src 10.0.26.80 metric 100
192.168.25.0/24 dev eth1 proto kernel scope link src 192.168.25.88
192.168.25.1 dev eth1 proto dhcp scope link src 192.168.25.88 metric 110
<VirtualHost *:80>
ServerName rds.site.in
ProxyPreserveHost On
ProxyPass / http://192.168.125.248/
ProxyPassReverse / http://192.168.125.248/
</VirtualHost>