把django开发好的项目部署到apache2服务器。 记录我的配置过程。apache,django,mod_wsgi,python版本如下。不同版本大同小异。ii apache2 2.2.22-1ubuntu1.6 ...
分类:
Web程序 时间:
2015-02-07 15:45:40
阅读次数:
215
在《Publishing Mercurial Repositories》这篇文章中介绍了很多种将我们自己的hg代码库发布/公开的办法。其中最轻量型的办法是使用hg自带的web server发布,只需要在代码库目录下执行命令hg serve就搞定。但是这只是一个临时的方案,如果想要更健壮更安全,官网还是建议使用hgweb脚本+Web server(apache,IIS等)的方式。
查看资料后,我权衡利弊,准备以《Serving Mercurial repositories with Apache and m...
分类:
Web程序 时间:
2015-01-22 21:56:27
阅读次数:
359
mac 下安装mod_wsgi
下载: mod_wsgi 下载
解压: tar -xvf mod_wsgi-3.4.tar.gz
进入目录:cd mod_wsgi-3.4
检测:./configure...
分类:
系统相关 时间:
2015-01-21 15:19:26
阅读次数:
549
如果自定义升级过了python到2.7#./configure --with-apxs=/usr/sbin/apxs --with-python=/usr/local/python27/bin/python2.7如果是默认python:#./configure --with-apxs=/usr/sb...
分类:
其他好文 时间:
2015-01-19 12:27:23
阅读次数:
265
1. 搭建Apache 服务器 (1). 下载 Httpd 及依赖 -- apr、apr-util httpd :http://httpd.apache.org/ apr & apr-util :https://apr.apache.org/ (2). 编译 apr :$ ./...
分类:
编程语言 时间:
2015-01-15 12:48:43
阅读次数:
199
1, 安装apache mod_WSGI 2, 安装 flask pip install Flask==0.93, 创建自己的 flask app在 Flask 中的 “Hello, World”现在在你的microblog文件夹中下有一个flask子文件夹,这里有 Python 解释器以及 Fla...
分类:
Web程序 时间:
2015-01-14 16:47:03
阅读次数:
219
软件都安装运行在windows上,版本如下:mod_wsgi-3.5.ap24.win32-py2.7.ziphttpd-2.4.10-win32-VC11.zip安装apachewindows安装apache2.4参考http://blog.csdn.net/zwfcan/article/details/8173838(windows安装PHP5.4+Apache2.4+Mysql5.5)安装mod_wsgi参考http://www.cnblogs.com..
分类:
Web程序 时间:
2015-01-04 19:27:36
阅读次数:
268
1.安装apache:yuminstall-yhttpdhttpd-devel修改/etc/httpd/conf/httpd.conf中的servername等配置,使http://*:*/能正常访问2.安装python:wgethttps://www.python.org/ftp/python/2.7.8/Python-2.7.8.tgztar-xzvfPython-2.7.8.tgzcdPython-2.7.8./configure--enable-shared=e..
分类:
编程语言 时间:
2014-12-29 06:40:05
阅读次数:
180
跟php类似,要想使Apache能够处理python脚本(实际上Apache是不能处理脚本的,只是利用别的扩展模块处理相应脚本),就要给Apache安装相应的扩展模块。Apache起初的python扩展是mod_python.so这个模块,但后来由于不在更新维护,所以大多使用mod_wsgi.so这...
分类:
Web程序 时间:
2014-12-16 06:25:32
阅读次数:
197
阿里云使用apache+mod_wsgi进行django的部署最终救星:http://blog.chedushi.com/archives/46921、http://www.it165.net/admin/html/201312/2234.html使用了virtualhost:同一个ip使用不同的端...
分类:
其他好文 时间:
2014-12-09 07:05:46
阅读次数:
183