UID1
性别保密
注册时间2013-7-10
最后登录1970-1-1
回帖0
在线时间 小时
精华
SB
威望
随币
成长值: 50580
|
API需要服务器安装SSH2扩展库和web运行环境
一、SSH2 按照http://www.aeys.org/2772.html安装
二、安装web环境(我用Apache)
1.安装httpd(Apache)
2.关闭selinux,iptables程序:
- service iptables stop
- setenforce 0
复制代码
3.重启httpd:
三、设置api域名和目录
1.用vi打开编辑httpd配置文件
- vi /etc/httpd/conf/httpd.conf
复制代码 2.按shift+g到最后,添加
- <VirtualHost *:80>
- ServerAdmin [email protected]
- DocumentRoot /var/www/html/xxx
- ServerName xxx.com
- ServerAlias www.xxx.com
- ErrorLog logs/xxx-error_log
- CustomLog logs/xxx-access_log common
- </VirtualHost>
复制代码 将里面所有的xxx调整为你自己的目录和域名
另外上面应该有个NameVirtualHost *:80,前面有个#的,把它去掉
然后保存 重启httpd
注:以上内容仅测试于 centos 6.x 64位 系统 其他系统自测
|
|