Nginx虽然目前使用比较多,但还没有提供整合SVN的功能。

还只能是Apache配置SVN,Nginx作为代理。

nginx.conf设置:

   server {
       listen       80;
       server_name ppsea.gicp.net;

       location / {
           root   html;
           index index.html index.htm;
           proxy_pass       http://192.168.1.10:8080/svn;
       }

   }

apache使用的8080端口,整合了SVN。