Hi,
If you are using ngnix you can set this in the nginx.conf
server{
...
location ~ \.git$ {
rewrite ^/(.*)\.git$ /$1 last;
}
}
Or apache in httpd.conf
<Directory ...
...
RewriteEngine On
RewriteRule (.*)\.git$ $1
</Directory>
;)
Em sexta-feira, 9 de agosto de 2013 07h49min10s UTC-3, Einar Offerdahl
escreveu:
>
> After I create a project, the SSH and HTTP addresses look totally
> scrambled:
>
> http://http://gitlab.mydomain.com//root/abracadabra2.git
>
> cpaneluser@http://gitlab.mydomain.com/:root/abracadabra2.git
>
> Does anyone know how to fix this?
>
--
You received this message because you are subscribed to the Google Groups
"GitLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.