码迷,mamicode.com
首页 > Web开发 > 详细

git使用nginx提供http访问

时间:2019-05-07 18:14:10      阅读:263      评论:0      收藏:0      [点我收藏+]

标签:使用   param   fas   roo   wrap   环境安装   fastcgi   location   lis   

环境安装
  • 安装nginx git fcgiwrap
  • 需要使用裸仓库

    nginx配置如下

    server {
        listen 8800 default_server;
        root /home/git;
        index index.html index.htm index.nginx-debian.html;
        server_name _;
        location ~ /git(/.*) {
                #try_files $uri $uri/ =404;
                #autoindex on;
                fastcgi_pass unix:/var/run/fcgiwrap.socket;
                fastcgi_param SCRIPT_FILENAME /usr/lib/git-core/git-http-backend;
                fastcgi_param GIT_HTTP_EXPORT_ALL "";
                fastcgi_param GIT_PROJECT_ROOT    /home/git ;
                fastcgi_param PATH_INFO           $1;
                include       fastcgi_params;
        }
    }

git使用nginx提供http访问

标签:使用   param   fas   roo   wrap   环境安装   fastcgi   location   lis   

原文地址:https://blog.51cto.com/ting2junshui/2390550

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!