Re: URL path match in ssh config

[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

 



> On Dec 10, 2014, at 3:26 PM, chaser@xxxxxxxxxxxxx wrote:
> 
> Hi. I have few different gitorious' accounts (for different workplaces and my personal), like
> 
> git@xxxxxxxxxxxxx:foo/foo.git
> git@xxxxxxxxxxxxx:bar/bar.git
> 
> I want to configure ssh to use different ssh keys for different repos. I try to do it with ~/.ssh/config.
> 
> How I can match path? I want to get something like this:
> 
> Match path foo/foo.git
>    HostName gitorious.org
>    User git
>    IdentityFile ~/.ssh/foo.key
> 
> Match path bar/bar.git
>    HostName gitorious.org
>    User git
>    IdentityFile ~/.ssh/bar.key

Why not do:

host gitwork
	HostName gitorious.org
	User git
	IdentityFile ~/.ssh/foo.key
	

host githome
	HostName gitorious.org
	User git
	IdentityFile ~/.ssh/bar.key


As "Match" is a server side feature not a client feature.   And the above would mean you'd do:

$ ssh gitwork:foo/foo.git
or
$ ssh githome:bar/bar.git

I do this trick a lot when I have the same machine with multiple login (think one web server with multi-virtual hosts all with different chroot/sftp locations).

- Ben

_______________________________________________
openssh-unix-dev mailing list
openssh-unix-dev@xxxxxxxxxxx
https://lists.mindrot.org/mailman/listinfo/openssh-unix-dev




[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

[Index of Archives]     [Linux ARM Kernel]     [Linux ARM]     [Linux Omap]     [Fedora ARM]     [IETF Annouce]     [Security]     [Bugtraq]     [Linux]     [Linux OMAP]     [Linux MIPS]     [ECOS]     [Asterisk Internet PBX]     [Linux API]

  Powered by Linux