у меня сервер CentOS 5 на domain.fr. Я пытаюсь установить поддомен, чтобы я мог использовать его с git, "git.domain.fr".
- мой репозиториев в
/home/git
(например,/home/git/repos.git
). - я установил
git-http-backend and nginx
. - я установил репозиторий следующим образом:
cd /home/git/repos.git && git --bare init
. - я
git.conf
(входит вnginx.conf
), как показано ниже.
однако, на моей клиентской оболочке, я получаю фатальную ошибку " репозиторий не найден":
$ git clone http://git.domain.fr/repos.git
кто-нибудь знает, что мне делать? Это кажется таким простым, я расстраиваюсь, потому что я уверен, что это ничего...
server {
listen 80;
server_name git.domain.fr;
root /home/git;
location ~ /(/.*) {
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /usr/bin/git-http-backend;
fastcgi_param GIT_HTTP_EXPORT_ALL true;
fastcgi_param GIT_PROJECT_ROOT /home/git;
fastcgi_param PATH_INFO ;
fastcgi_pass unix:/var/run/fcgiwrap.socket;
}
}
EDIT #1
я обновил файл следующим образом:
server {
listen 80;
server_name git.domain.fr;
root /home/git;
access_log /var/log/httpd/git.access.log;
error_log /var/log/httpd/git.error.log;
location / {
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /usr/bin/git-http-backend;
fastcgi_param GIT_HTTP_EXPORT_ALL true;
fastcgi_param GIT_PROJECT_ROOT /home/git;
fastcgi_param PATH_INFO $uri;
fastcgi_pass unix:/usr/local/src/fcgiwrap/systemd/fcgiwrap.socket;
}
}
я также проверил расположение сокета и дал его nginx:nginx
, но теперь я получаю "ошибку 500".
$ git clone git.domain.fr/repos.git
Cloning into 'repos'...
fatal: unable to access 'git.domain.fr/repos.git/': The requested URL returned error: 500
fcgi обертывание работает:
$ netstat -anp | grep cgi
unix 2 [ ACC ] STREAM LISTENING 1510861 24878/fcgiwrap /usr/local/src/fcgiwrap/systemd/fcgiwrap.socket
он имеет правильное разрешения:
$ ls -lia /usr/local/src/fcgiwrap/systemd/fcgiwrap.socket
3067341 srwxrwxrwx 1 nginx nginx 0 févr. 22 23:51 /usr/local/src/fcgiwrap/systemd/fcgiwrap.socket
git.error.log
пусто, но git.access.log
содержит:
1**.***.***.*** - - [23/Feb/2014:13:02:17 +0100] "GET /repos.git/info/refs?service=git-upload-pack HTTP/1.1" 500 5 "-" "git/1.8.4"
EDIT #2
проблема почти решена: я просто перезапустил свой сервер по некоторым причинам, а затем git pull
работали.
теперь, я получаю ошибку 403, когда я нажимаю.
доставка :
$ GIT_CURL_VERBOSE=1 git push origin master
* Adding handle: conn: 0x7fe329811800
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x7fe329811800) send_pipe: 1, recv_pipe: 0
* About to connect() to git.domain.fr port 80 (#0)
* Trying 108.162.199.22...
* Connected to git.domain.fr (108.162.199.22) port 80 (#0)
> GET /repos.git/info/refs?service=git-receive-pack HTTP/1.1
User-Agent: git/1.8.4
Host: git.domain.fr
Accept: */*
Accept-Encoding: gzip
Pragma: no-cache
< HTTP/1.1 403 Forbidden
* Server cloudflare-nginx is not blacklisted
< Server: cloudflare-nginx
< Date: Sun, 23 Feb 2014 18:20:59 GMT
< Content-Type: application/octet-stream
< Transfer-Encoding: chunked
< Connection: keep-alive
< Set-Cookie: __cfduid=dc7d61cac342494e2b1307f88f8bf440f1393179659791; expires=Mon, 23-Dec-2019 23:50:00 GMT; path=/; domain=.domain.fr; HttpOnly
< Expires: Fri, 01 Jan 1980 00:00:00 GMT
< Pragma: no-cache
< Cache-Control: no-cache, max-age=0, must-revalidate
< Expires: Fri, 01 Jan 1980 00:00:00 GMT
< Pragma: no-cache
< Cache-Control: no-cache, max-age=0, must-revalidate
< CF-RAY: 1015eee9b29a091a-CDG
<
* Connection #0 to host git.domain.fr left intact
fatal: unable to access 'http://git.domain.fr/repos.git/': The requested URL returned error: 403
Жми :
$ GIT_CURL_VERBOSE=1 git pull origin master
* Adding handle: conn: 0x7fb11b811800
* Adding handle: send: 0
* Adding handle: recv: 0
* Curl_addHandleToPipeline: length: 1
* - Conn 0 (0x7fb11b811800) send_pipe: 1, recv_pipe: 0
* About to connect() to git.domain.fr port 80 (#0)
* Trying 108.162.198.22...
* Connected to git.domain.fr (108.162.198.22) port 80 (#0)
> GET /repos.git/info/refs?service=git-upload-pack HTTP/1.1
User-Agent: git/1.8.4
Host: git.domain.fr
Accept: */*
Accept-Encoding: gzip
Pragma: no-cache
< HTTP/1.1 200 OK
* Server cloudflare-nginx is not blacklisted
< Server: cloudflare-nginx
< Date: Sun, 23 Feb 2014 18:25:33 GMT
< Content-Type: application/x-git-upload-pack-advertisement
< Transfer-Encoding: chunked
< Connection: keep-alive
< Set-Cookie: __cfduid=d75ab90529a399f012383cdee482bc7ed1393179933224; expires=Mon, 23-Dec-2019 23:50:00 GMT; path=/; domain=.domain.fr; HttpOnly
< Expires: Fri, 01 Jan 1980 00:00:00 GMT
< Pragma: no-cache
< Cache-Control: no-cache, max-age=0, must-revalidate
< CF-RAY: 1015f596a8700914-CDG
<
* Connection #0 to host git.domain.fr left intact
From http://git.domain.fr/repos
* branch master -> FETCH_HEAD
Already up-to-date.
Log (ошибка.журнал пуст) :
$ tail -f /var/log/httpd/git.access.log
1**.***.***.*** - - [23/Feb/2014:19:20:59 +0100] "GET /repos.git/info/refs?service=git-receive-pack HTTP/1.1" 403 5 "-" "git/1.8.4"
1**.***.***.*** - - [23/Feb/2014:19:25:33 +0100] "GET /repos.git/info/refs?service=git-upload-pack HTTP/1.1" 200 294 "-" "git/1.8.4"
я проверил права и владельцев. Что я могу сделать ? Любой идея ?
EDIT #3
успехов !
git push получает 403 ошибки при использовании без аутентификации. Я просто должен был установить nginx так, чтобы он запрашивал пользователя / пароль:
server {
listen 80;
server_name git.domain.fr;
root /home/git;
access_log /var/log/httpd/git.access.log;
error_log /var/log/httpd/git.error.log;
auth_basic "Accès restreint";
auth_basic_user_file /home/domain.fr/git_access;
location / {
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME /usr/bin/git-http-backend;
fastcgi_param GIT_HTTP_EXPORT_ALL true;
fastcgi_param GIT_PROJECT_ROOT /home/git;
fastcgi_param PATH_INFO $uri;
fastcgi_param REMOTE_USER $remote_user;
fastcgi_pass unix:/usr/local/src/fcgiwrap/systemd/fcgiwrap.socket;
}
}
вы также должны проверить, что ваш репозиторий принадлежит git:git
:
chmod -R g+ws repos.git
chgrp -R git repos.git
все в порядке.
Спасибо за помощь !