我需要在无头环境中模拟击键。
全部xte
和xdotool
许多C++
设计用于 X11 窗口
我试过 xdotool,它会抛出一些错误:
xdotool type "aaaaa"
Error: Can't open display: (null)
Failed creating new xdo instance
我知道Xvfb
但正在寻找其他可能的解决方法
我需要在无头环境中模拟击键。
全部xte
和xdotool
许多C++
设计用于 X11 窗口
我试过 xdotool,它会抛出一些错误:
xdotool type "aaaaa"
Error: Can't open display: (null)
Failed creating new xdo instance
我知道Xvfb
但正在寻找其他可能的解决方法
基于许多在线资源,在提供静态文件时,Apache2 将在每个不同的连接上创建新线程......导致资源匮乏
但是如何通过 Apache2(mod_php、MPM worker 等)为 PHP 提供服务呢?apache 是否也会像提供静态文件一样打开新线程?
(AFAIK,在 nginx php-fpm 中,我们可以设置最大线程,但我不知道每个线程有多少个连接)
我打算使用 Apache2 为 PHP 提供服务,并希望它在资源使用和性能方面与 nginx PHP-FPM 相同,甚至更好。
server {
server_name *.com.another.com;
location / {
root /var/www/html/$host;
index index.html;
}
}
在上面的例子中,如果有人向 发出请求www.jaja.com.another.com
,nginx 将在目录中查找/var/www/html/www.jaja.com.another.com
这就是我需要的:如果有人向 发出请求www.jaja.com.another.com
,我希望 nginx 在目录中查找/var/www/html/www.jaja.com
换句话说,$host
是www.jaja.com.another.com
。.another.com
我需要删除$host
Nginx 字符串替换对我来说是新的