xl / wordpress + fastcgi cache.md
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 1 month ago
Absolutely! Implementing full-page caching with Nginx is one of the most powerful ways to dramatically boost WordPress performance, especially for high-traffic sites like yours (1k sustained users).
This guide assumes you're using:
- Nginx (not Apache)
- PHP-FPM
- WordPress
- Linux (Ubuntu/Debian)
xl / limiting interface throughput
0 вподобань
0 форк(-ів)
1 файл(-ів)
Остання активність 10 months ago
limiting interface throughput using htb
tc qdisc add dev {interface} root handle 1: htb
tc class add dev {interface} parent 1: classid 1:50 htb rate 50mbit ceil 50mbit
tc class add dev {interface} parent 1: classid 1:100 htb rate 100mbit ceil 100mbit
tc class add dev {interface} parent 1: classid 1:500 htb rate 500mbit ceil 500mbit
iptables -t mangle -A POSTROUTING -o {interface} -d {ip} -j CLASSIFY --set-class 1:50
iptables -t mangle -A POSTROUTING -o {interface} -d {ip} -j CLASSIFY --set-class 1:100
iptables -t mangle -A POSTROUTING -o {interface} -d {ip} -j CLASSIFY --set-class 1:500
Новіше
Пізніше