diff options
author | mattes <matthias.kadenbach@gmail.com> | 2014-09-05 11:43:52 +0200 |
---|---|---|
committer | mattes <matthias.kadenbach@gmail.com> | 2014-12-31 18:37:31 -0800 |
commit | 2c9b35732409c2a73150788067e1b03b91101f39 (patch) | |
tree | 0ee482e92863f279db8aaa65c820a5406b97f46a /lib/support | |
parent | 82dec3baf284675564a3c3adc9c198519828bc67 (diff) | |
download | gitlab-ce-2c9b35732409c2a73150788067e1b03b91101f39.tar.gz |
remove optional html tags
Diffstat (limited to 'lib/support')
-rw-r--r-- | lib/support/nginx/gitlab | 7 | ||||
-rw-r--r-- | lib/support/nginx/gitlab-ssl | 7 |
2 files changed, 2 insertions, 12 deletions
diff --git a/lib/support/nginx/gitlab b/lib/support/nginx/gitlab index ab6ca6e6260..80827150bee 100644 --- a/lib/support/nginx/gitlab +++ b/lib/support/nginx/gitlab @@ -62,12 +62,7 @@ server { if ($http_user_agent ~* "Go") { return 200 " <!DOCTYPE html> - <html lang='en'> - <head> - <meta charset='utf-8'> - <meta content='$host$uri git $scheme://$host$uri.git' name='go-import'> - </head> - <body></body> + <head><meta content='$host$uri git $scheme://$host$uri.git' name='go-import'></head> </html>"; } diff --git a/lib/support/nginx/gitlab-ssl b/lib/support/nginx/gitlab-ssl index 1903c9aa4fb..7fb4d568d21 100644 --- a/lib/support/nginx/gitlab-ssl +++ b/lib/support/nginx/gitlab-ssl @@ -107,12 +107,7 @@ server { if ($http_user_agent ~* "Go") { return 200 " <!DOCTYPE html> - <html lang='en'> - <head> - <meta charset='utf-8'> - <meta content='$host$uri git $scheme://$host$uri.git' name='go-import'> - </head> - <body></body> + <head><meta content='$host$uri git $scheme://$host$uri.git' name='go-import'></head> </html>"; } |