本文介绍 Sealos Devbox 怎么开发 C 语言的项目,nginx 源码就是个非常好的例子,其它 C 语言项目同理操作就行。
创建干净的 C 语言环境 并通过 Cursor 连接
我们监听端口时选择 80
创建完成后通过 IDE 进行连接
在终端中 clone 代码,安装依赖库,编译运行
git clone https://github.com/nginx/nginx
cd nginx/
sudo apt install libpcre3 libpcre3-dev
sudo apt install zlib1g zlib1g-dev
./auto/configure
make
sudo make install
sudo /usr/local/nginx/sbin/nginx
本地测试:
$ curl localhost
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
html { color-scheme: light dark; }
body { width: 35em; margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif; }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>
<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>
<p><em>Thank you for using nginx.</em></p>
</body>
</html>
Devbox 在线访问:
搞定,环境没问题。
开始定制 nginx http 模块
这里以一个简单的 hello-world 为例
创建源码目录
mkdir src/http/hello_world
在该目录下创建两个文件:
config 文件:
ngx_module_type=HTTP
ngx_addon_name=hello_world
ngx_module_name=ngx_http_hello_world_module
ngx_module_srcs="$ngx_addon_dir/ngx_http_hello_world_module.c"
. auto/module
ngx_http_hello_world_module.c 文件,这里写源码,我不全贴了,想要可以去这个仓库里找:
https://github.com/nginx/nginx-dev-examples/tree/main/hello_world_1
修改配置文件
devbox@nginx:~/project$ cd /usr/local/nginx/conf/
devbox@nginx:/usr/local/nginx/conf$ ls
fastcgi.conf fastcgi_params.default mime.types nginx.conf.default uwsgi_params
fastcgi.conf.default koi-utf mime.types.default scgi_params uwsgi_params.default
fastcgi_params koi-win nginx.conf scgi_params.default win-utf
devbox@nginx:/usr/local/nginx/conf$ sudo vim nginx.conf
加上
location / {
hello_world;
}
编译源码并运行
./configure --add-module=src/http/hello_world
make
sudo make install
# 运行
sudo /usr/local/nginx/sbin/nginx
测试一下
devbox@nginx:~$ curl localhost/hello
Hello, world!
公网访问:
搞定收工