在ubuntu 16.04上配置apache模块

时间:2017-07-31 15:21:53

标签: c apache module ubuntu-16.04

我在ubuntu 16.04上创建了一个hello world模块

#include <httpd.h>
#include <http_protocol.h>
#include <http_config.h>

static int helloworld_handler(request_rec* r)
{
    if (!r->handler || strcmp(r->handler, "helloworld"))
        return DECLINED;

    if (r->method_number != M_GET)
        return HTTP_METHOD_NOT_ALLOWED;

    ap_set_content_type(r, "text/html");
    ap_rprintf(r, "Hello, world!");
    return OK;
}

static void register_hooks(apr_pool_t* pool)
{
    ap_hook_handler(helloworld_handler, NULL, NULL, APR_HOOK_MIDDLE);
}

module AP_MODULE_DECLARE_DATA helloworld_module = {
    STANDARD20_MODULE_STUFF,
    NULL,
    NULL,
    NULL,
    NULL,
    NULL,
    register_hooks
};

使用此命令进行编译:

apxs -iac mod_helloworld.c

我可以看到启动它的模块

apache2ctl -M

a2enmod

如果我跑

sudo a2enmod helloworld

我可以看到此模块已启用

我还在 mods-available

文件夹中插入了 helloworld.conf
<Location /helloworld>
    SetHandler helloworld_handler
</Location>

文件 helloworld.load 包含

LoadModule helloworld_module  /usr/lib/apache2/modules/mod_helloworld.so

如何配置它以在浏览器中查看输出调用

http://localhost/helloworld

mod_helloworld.so 位于 / usr / lib / apache2 / modules

如果我root@ubuntu:/var/log/apache2# tail -f access.log

我收到了这个

127.0.0.1 - - [03/Aug/2017:03:18:14 -0700] "GET /helloworld HTTP/1.1" 404 500 "-" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:54.0) Gecko/20100101 Firefox/54.0"

如何解决?

1 个答案:

答案 0 :(得分:1)

您正在检查C代码中的“helloworld”,但设置“helloworld_handler”w / SetHandler。您需要更改为“SetHandler helloworld”才能让您的模块不衰落。