标签:nginx
一个小范例
Python使用CGIHTTPServer调用shell作为cgi脚本
mkdir -p /data/cgi-bin
vim hello.sh
#!/bin/bash echo "Content-Type:text/html" echo "" echo "hello world!"
执行python -m CGIHTTPServer
然后在浏览器中输入http://<ip>:8000/cgi-bin/hello.sh
即可调用我们的cgi脚本
说明:
1、脚本前三行是必须的,第一行用于指定脚本执行使用的解释器,第二行和第三行是HTTP协议规范,在发送HTML正文之前要发送MIME头和空行
2、cgi脚本都是使用nobody用户执行的,所以要确保nobody可以读取并执行hello.sh
nginx下启用cgi脚本(py,shell)
安装fcgiwrap,spawn-fcgi,fcgi
yum -y install autoconf automake libtool fcgi fcgi-devel spawn-fcgi
1.安装fcgiwrap
wget https://github.com/gnosek/fcgiwrap/archive/master.zip -O fcgiwrap.zip unzip fcgiwrap.zip cd fcgiwrap-master autoreconf -i #这里报错的话安装automake包 ./configure make make install
2.配置spawn-fcgi
编辑spawn-fcgi配置文件
vi /etc/sysconfig/spawn-fcgi FCGI_SOCKET=/var/run/fcgiwrap.socket FCGI_PROGRAM=/usr/local/sbin/fcgiwrap FCGI_USER=nginx FCGI_GROUP=nginx FCGI_EXTRA_OPTIONS="-M 0700"OPTIONS="-u $FCGI_USER -g $FCGI_GROUP -s $FCGI_SOCKET -S $FCGI_EXTRA_OPTIONS -F 1 -P /var/run/spawn-fcgi.pid -- $FCGI_PROGRAM"
添加开机启动:
chkconfig spawn-fcgi on
启动spawn-fcgi服务:
service spawn-fcgi start
修改时间的cgi应用 (这里是我同事用py写的一个修改系统时间的工具)
tar zxvf cgi-bin.tar.gz -C /data
修改index.py 里面的herf地址
设置nginx
cgi应用在/data/cgi-bin目录下
server { root /data; location ~* .(py|sh)$ { gzip off; fastcgi_pass unix:/var/run/fcgiwrap.socket; include fastcgi_params; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } location ~* .(jpg|gif|png|js|css)$ { if (-f $request_filename) { expires max; break; } } }
重启nginx
service nginx reload
访问http://10.10.30.177/cgi-bin/index.py 即可调用我们的cgi脚本
http://10.10.30.177/cgi-bin/hello.sh 这里对应的是上面那个cgi范例
本文出自 “不抛弃!不放弃” 博客,请务必保留此出处http://thedream.blog.51cto.com/6427769/1718527
标签:nginx
原文地址:http://thedream.blog.51cto.com/6427769/1718527