Can't push, can't clone, can't add file via web
Fresh install, I can create project, I can create group, but I cannot push, clone, or add file via www( I get: Your changes could not be committed, because the file has been changed)
I have tried ssh and http. nginx throws 401 and 404,
falanga:test lvj$ mkdir test-project
falanga:test lvj$ cd test-project
falanga:test-project lvj$ git init
Initialized empty Git repository in /Users/lvj/test/test-project/.git/
falanga:test-project lvj$ touch README.md
falanga:test-project lvj$ git add README.md
falanga:test-project lvj$ git commit -m "first commit"
[master (root-commit) c6c7511] first commit
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 README.md
falanga:test-project lvj$ git remote add origin http://git.example.tld/foobar-ns/test-project.git
falanga:test-project lvj$ git push -u origin master
Username for 'http://git.example.tld': lvj
Password for 'http://lvj@git.tld':
remote: Not Found
fatal: repository 'http://git.example.tld/foobar-ns/test-project.git/' not found
falanga:test-project lvj$
root@phalanx:/home/git/gitlab/log # tail /var/log/gitlab_access.log
12.34.56.78 - - [27/Apr/2015:23:06:21 +0200] "GET /groups/foobar-ns?limit=20&offset=0 HTTP/1.1" 200 34 "http://git.example.tld/groups/foobar-ns" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36"
12.34.56.78 - - [27/Apr/2015:23:06:24 +0200] "GET / HTTP/1.1" 200 6589 "http://git.example.tld/groups/foobar-ns" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36"
12.34.56.78 - - [27/Apr/2015:23:06:24 +0200] "GET /?limit=20&offset=0 HTTP/1.1" 304 0 "http://git.example.tld/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36"
12.34.56.78 - - [27/Apr/2015:23:06:26 +0200] "GET /projects/new HTTP/1.1" 200 11125 "http://git.example.tld/" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36"
12.34.56.78 - - [27/Apr/2015:23:06:43 +0200] "POST /projects HTTP/1.1" 302 120 "http://git.example.tld/projects/new" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36"
12.34.56.78 - - [27/Apr/2015:23:06:43 +0200] "GET /foobar-ns/test-project HTTP/1.1" 200 9841 "http://git.example.tld/projects/new" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36"
12.34.56.78 - - [27/Apr/2015:23:06:43 +0200] "GET /foobar-ns/test-project?limit=20&offset=0 HTTP/1.1" 200 34 "http://git.example.tld/foobar-ns/test-project" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36"
12.34.56.78 - - [27/Apr/2015:23:08:20 +0200] "GET /foobar-ns/test-project.git/info/refs?service=git-receive-pack HTTP/1.1" 401 0 "-" "git/2.3.2 (Apple Git-55)"
12.34.56.78 - - [27/Apr/2015:23:08:24 +0200] "GET /foobar-ns/test-project.git/info/refs?service=git-receive-pack HTTP/1.1" 401 0 "-" "git/2.3.2 (Apple Git-55)"
12.34.56.78 - lvj [27/Apr/2015:23:08:24 +0200] "GET /foobar-ns/test-project.git/info/refs?service=git-receive-pack HTTP/1.1" 404 19 "-" "git/2.3.2 (Apple Git-55)"
root@phalanx:/home/git/gitlab/log # tail production.log
Processing by ProjectsController#show as HTML
Parameters: {"namespace_id"=>"foobar-ns", "id"=>"test-project"}
Completed 200 OK in 126ms (Views: 65.6ms | ActiveRecord: 15.2ms)
Started GET "/foobar-ns/test-project?limit=20&offset=0" for 12.34.56.78 at 2015-04-27 23:06:43 +0200
Processing by ProjectsController#show as JSON
Parameters: {"limit"=>"20", "offset"=>"0", "namespace_id"=>"foobar-ns", "id"=>"test-project"}
After adding file via web interface
root@phalanx:/home/git/gitlab/log # tail githost.log
April 27, 2015 23:11 -> ERROR -> Command failed [1]: /usr/local/bin/git --git-dir=/home/git/gitlab-satellites/foobar-ns/test-project/.git --work-tree=/home/git/gitlab-satellites/foobar-ns/test-project push origin __parking_branch:master
remote: GitLab: No such project
To /home/git/repositories/foobar-ns/test-project.git
! [remote rejected] __parking_branch -> master (pre-receive hook declined)
error: failed to push some refs to '/home/git/repositories/foobar-ns/test-project.git'
April 27, 2015 23:11 -> ERROR -> Command failed [1]: /usr/local/bin/git --git-dir=/home/git/gitlab-satellites/foobar-ns/test-project/.git --work-tree=/home/git/gitlab-satellites/foobar-ns/test-project commit -a -m test descr
April 27, 2015 23:11 -> ERROR -> Command failed [1]: /usr/local/bin/git --git-dir=/home/git/gitlab-satellites/foobar-ns/test-project/.git --work-tree=/home/git/gitlab-satellites/foobar-ns/test-project commit -a -m test descr
April 27, 2015 23:11 -> ERROR -> Command failed [1]: /usr/local/bin/git --git-dir=/home/git/gitlab-satellites/foobar-ns/test-project/.git --work-tree=/home/git/gitlab-satellites/foobar-ns/test-project commit -a -m test descr
root@phalanx:/home/git/gitlab/log # tail production.log
Parameters: {"utf8"=>"�", "authenticity_token"=>"[FILTERED]", "file_name"=>"TESTFILE", "encoding"=>"text", "commit_message"=>"test descr", "new_branch"=>"master", "content"=>"TEST CONTENT", "namespace_id"=>"foobar-ns", "project_id"=>"test-project", "id"=>"master"}
Completed 200 OK in 192ms (Views: 39.0ms | ActiveRecord: 15.6ms)
Started POST "/foobar-ns/test-project/create/master" for 12.34.56.78 at 2015-04-27 23:11:26 +0200
Processing by Projects::BlobController#create as HTML
Parameters: {"utf8"=>"�", "authenticity_token"=>"[FILTERED]", "file_name"=>"TESTFILE", "encoding"=>"text", "commit_message"=>"test descr", "new_branch"=>"master", "content"=>"TEST CONTENT", "namespace_id"=>"foobar-ns", "project_id"=>"test-project", "id"=>"master"}
Completed 200 OK in 177ms (Views: 64.7ms | ActiveRecord: 12.7ms)
Started POST "/foobar-ns/test-project/create/master" for 12.34.56.78 at 2015-04-27 23:11:38 +0200
Processing by Projects::BlobController#create as HTML
Parameters: {"utf8"=>"�", "authenticity_token"=>"[FILTERED]", "file_name"=>"TESTFILE", "encoding"=>"text", "commit_message"=>"test descr", "new_branch"=>"master", "content"=>"TEST CONTENT", "namespace_id"=>"foobar-ns", "project_id"=>"test-project", "id"=>"master"}
Completed 200 OK in 155ms (Views: 45.0ms | ActiveRecord: 12.5ms)