Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-ce
Commits
626f5bab
Commit
626f5bab
authored
Feb 20, 2015
by
Marin Jankovski
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'mattes-go-get-workaround-nginx'
parents
b180476b
51349ca3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
7 deletions
+20
-7
app/views/layouts/_head.html.haml
app/views/layouts/_head.html.haml
+0
-7
lib/support/nginx/gitlab
lib/support/nginx/gitlab
+10
-0
lib/support/nginx/gitlab-ssl
lib/support/nginx/gitlab-ssl
+10
-0
No files found.
app/views/layouts/_head.html.haml
View file @
626f5bab
%head
%head
%meta
{
charset:
"utf-8"
}
%meta
{
charset:
"utf-8"
}
-# Go repository retrieval support
-# Need to be the fist thing in the head
-# Since Go is using an XML parser to process HTML5
-# https://github.com/gitlabhq/gitlabhq/pull/5958#issuecomment-45397555
-
if
controller_name
==
'projects'
&&
action_name
==
'show'
%meta
{
name:
"go-import"
,
content:
"#{@project.web_url_without_protocol} git #{@project.web_url}.git"
}
%meta
{
content:
"GitLab Community Edition"
,
name:
"description"
}
%meta
{
content:
"GitLab Community Edition"
,
name:
"description"
}
%title
%title
...
...
lib/support/nginx/gitlab
View file @
626f5bab
...
@@ -77,6 +77,16 @@ server {
...
@@ -77,6 +77,16 @@ server {
proxy_pass http://gitlab;
proxy_pass http://gitlab;
}
}
## If ``go get`` detected, return go-import meta tag.
## This works for public and for private repositories.
## See also http://golang.org/cmd/go/#hdr-Remote_import_paths
if ($http_user_agent ~* "Go") {
return 200 "
<!DOCTYPE html>
<head><meta content='$host$uri git $scheme://$host$uri.git' name='go-import'></head>
</html>";
}
## If a file, which is not found in the root folder is requested,
## If a file, which is not found in the root folder is requested,
## then the proxy passes the request to the upsteam (gitlab unicorn).
## then the proxy passes the request to the upsteam (gitlab unicorn).
location @gitlab {
location @gitlab {
...
...
lib/support/nginx/gitlab-ssl
View file @
626f5bab
...
@@ -123,6 +123,16 @@ server {
...
@@ -123,6 +123,16 @@ server {
proxy_pass http://gitlab;
proxy_pass http://gitlab;
}
}
## If ``go get`` detected, return go-import meta tag.
## This works for public and for private repositories.
## See also http://golang.org/cmd/go/#hdr-Remote_import_paths
if ($http_user_agent ~* "Go") {
return 200 "
<!DOCTYPE html>
<head><meta content='$host$uri git $scheme://$host$uri.git' name='go-import'></head>
</html>";
}
## If a file, which is not found in the root folder is requested,
## If a file, which is not found in the root folder is requested,
## then the proxy passes the request to the upsteam (gitlab unicorn).
## then the proxy passes the request to the upsteam (gitlab unicorn).
location @gitlab {
location @gitlab {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment