nginx将svn请求转发到apache实现svn http请求
需要安装apache
libapache2-svn模块
,nginx
,svn
。安装过程略过。
记录比较重要几点(不按先后):
安装apache的svn模块
sudo apt-get install libapache2-svn
apahce的svn模块,通过他实现svn权限等问题。
apt-get install apache2-utils
如果想通过htpasswd来给svn加(修改重置)密码,就安装
apache2-utils
eg: htpasswd /home/svn/work/conf/passwd tb New password: Re-type new password: Updating password for user tb
nginx监听转发给apache请求:
nginx 监听请求转发到apache的86端口(因为不能同时占用80)
vim /etc/nginx/conf.d
server{
listen 80; server_name svn.tb.com; location /svn/work { proxy_pass http://127.0.0.1:86/svn/work; }
}
通过上述代码实现请求http://svn.tb.com/svn/work/时的正确响应。 (请求此网址是nginx响应,对应下面apache响应)
设置apache监听端口为86,尽量最小化安装,减少内存。具体可看末尾视频。
//apache 的ports.conf ,监听86端口
Listen 86初始化svn根目录
eg:
/home/svn/work是通过sudo svnadmin create建立的目录
创建成功后目录如下:
drwxr-xr-x 2 root root 4096 1月 15 10:52 conf
drwxr-sr-x 6 root root 4096 1月 15 14:52 db
-r--r--r-- 1 root root 2 1月 15 10:50 format
drwxr-xr-x 2 root root 4096 1月 15 10:50 hooks
drwxr-xr-x 2 root root 4096 1月 15 10:50 locks
-rw-r--r-- 1 root root 246 1月 15 10:50 README.txtapache配置设置-perfork
apache2.conf添加,第一份是优化(具体参考末尾视频) 第二份是访问监听类似http://192.168.92.247:86/svn/work/的请求, (此网址请求为apache响应请求,对应上面nginx请求) <IfModule mpm_prefork_module> StartServers 1 MinSpareServers 1 MaxSpareServers 1 MaxClients 10 MaxRequestsPerChild 0 </IfModule> <Location /svn/work> DAV svn SVNPath /home/svn/work AuthType Basic AuthName "Authorization Realm" AuthUserFile /home/svn/work/conf/passwd AuthzSVNAccessFile /home/svn/work/conf/authz Require valid-user </Location>
关于svn的一些设置,比较重要的是设置权限(可参考末尾链接)
启动&检测
svnserve -d //后台启动
netstat -antp |grep svnserve或者 ps -A |grep "svn" //检测是否启动将线上代码(未版本化的文件)初始化到版本库中
sudo svn import /usr/share/nginx/html file:///home/svn/work -m "init"[sudo] password for tb250:
正在增加 /usr/share/nginx/html/50x.html
正在增加 /usr/share/nginx/html/index.html
正在增加 /usr/share/nginx/html/info.php
正在增加 /usr/share/nginx/html/mail.php提交后的版本为 1。
从版本库中checkout一份代码 svn_code
sudo svn checkout file:///home/svn/work /home/tb250/svn_code从版本库中再checkout另外一份代码 svn_code_2
sudo svn checkout file:///home/svn/work /home/tb250/svn_code_2添加 svn add xx.php
svn status (简写 svn st)
A xx.phpsvn commit -m 'add xx.php'(简写 svn ci)
更新到最新版本
svn update 简写 svn up更新到某个版本
svn update -r numerversion查看添加日志
svn log
写在最后:个人整理。不足之处请各位指点
相关推荐
pub_svnserve.conf的 pub_authz.conf的配置文件有非法字符的原因引起,需要查找pub_authz.conf提的非法内容比如多余的空格删除或直接将pub_authz.conf