简单的CGI尝试
CGI(common gateway interface)
CGI是服务器的标准,也就是任意具有输入输出的编程语言都可以轻易编写CGI程序
python http server
通过python的http模块作为server
1 | 启动服务器 |
以下细节要注意
CGI脚本一定要放在cgi-bin目录下
CGI脚本一定要有执行权限
标准CGI脚本
bash脚本CGI
1
2
3
4
5
6!/bin/bash
echo "Content-type: text/html"
echo "" # 输出换行是http协议格式必须的2个换行
echo "<html><body>Hello CGI</body></html>"python脚本CGI
1
2
3
4#!/bin/python
print("Content-type: text/html")
print()
print("<html><body>Hello CGI</body></html>")C语言CGI
1
2
3
4
5
6
7
int main()
{
printf("Content-type: text/html\n");
printf("\n");
printf("<html><body>Hello CGI</body></html>");
}
实际验证
- 将以上CGI程序的可执行文件命名为echo
- 为echo文件添加执行权限
1
chmod +x echo
- 将echo文件放入cgi-bin目录下
- 浏览器验证
1
curl ip:port/cgi-bin/echo
nginx server
需要fcgiwrap,因为nginx支持fastCGI
1 | server { |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.