我是使用 Wt 的新手,我想知道我必须做什么才能获得在 Web 服务器(Apache 或免费的 webhost 进行测试)上工作的示例(比如说你好)。
我知道如何使用内置的网络服务器;我必须启动该命令:
./hello.wt --docroot . --http-address 0.0.0.0 --http-port 8080
然后,我去http://127.0.0.1:8080/它正在工作。
但是,我如何使用 Apache 来做到这一点?
谢谢。
我是使用 Wt 的新手,我想知道我必须做什么才能获得在 Web 服务器(Apache 或免费的 webhost 进行测试)上工作的示例(比如说你好)。
我知道如何使用内置的网络服务器;我必须启动该命令:
./hello.wt --docroot . --http-address 0.0.0.0 --http-port 8080
然后,我去http://127.0.0.1:8080/它正在工作。
但是,我如何使用 Apache 来做到这一点?
谢谢。
传递-DCONNECTOR_FCGI=ON
给 cmake 并按照这些说明使用 Apache 配置 FastCGI
我将 FastCgiServer /dir/to/Wt/Examples/Hello/hello.wt 添加到我的 fastcgi.conf 中,现在它可以工作了。