**Motivations:** - Centraliser les fichiers Cursor (rules, skills, agents, commands, hooks) par user et par projet **Root causes:** - N/A **Correctifs:** - N/A **Evolutions:** - desk: rules, skills-cursor, agents, commands, hooks, argv/hooks/mcp.json - ncantu: README placeholder - 4NK_node, algo, builazoo, ia_local, lecoffre_ng, lecoffre_ng_pprod, lecoffre_ng_test: .cursor contents **Pages affectées:** - cursor/desk/, cursor/ncantu/, cursor/<project>/
73 lines
1.8 KiB
Plaintext
73 lines
1.8 KiB
Plaintext
# SSH Configuration for Cursor - Infrastructure Cloud 4NK
|
|
# This file contains SSH configurations for all servers in the infrastructure
|
|
|
|
# Proxy server (accès direct)
|
|
Host proxy
|
|
HostName 4nk.myftp.biz
|
|
User ncantu
|
|
Port 22
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
IdentitiesOnly yes
|
|
PreferredAuthentications publickey
|
|
PasswordAuthentication no
|
|
|
|
# Test server (via proxy)
|
|
Host test
|
|
HostName 192.168.1.101
|
|
User ncantu
|
|
Port 22
|
|
ProxyJump ncantu@4nk.myftp.biz
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
IdentitiesOnly yes
|
|
PreferredAuthentications publickey
|
|
PasswordAuthentication no
|
|
StrictHostKeyChecking accept-new
|
|
|
|
# Pre-production server (via proxy)
|
|
Host pprod
|
|
HostName 192.168.1.102
|
|
User ncantu
|
|
Port 22
|
|
ProxyJump ncantu@4nk.myftp.biz
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
IdentitiesOnly yes
|
|
PreferredAuthentications publickey
|
|
PasswordAuthentication no
|
|
StrictHostKeyChecking accept-new
|
|
|
|
# Production server (via proxy)
|
|
Host prod
|
|
HostName 192.168.1.103
|
|
User ncantu
|
|
Port 22
|
|
ProxyJump ncantu@4nk.myftp.biz
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
IdentitiesOnly yes
|
|
PreferredAuthentications publickey
|
|
PasswordAuthentication no
|
|
StrictHostKeyChecking accept-new
|
|
|
|
# Services server (via proxy)
|
|
Host services
|
|
HostName 192.168.1.104
|
|
User ncantu
|
|
Port 22
|
|
ProxyJump ncantu@4nk.myftp.biz
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
IdentitiesOnly yes
|
|
PreferredAuthentications publickey
|
|
PasswordAuthentication no
|
|
StrictHostKeyChecking accept-new
|
|
|
|
# Bitcoin server (via proxy)
|
|
Host bitcoin
|
|
HostName 192.168.1.105
|
|
User ncantu
|
|
Port 22
|
|
ProxyJump ncantu@4nk.myftp.biz
|
|
IdentityFile ~/.ssh/id_ed25519
|
|
IdentitiesOnly yes
|
|
PreferredAuthentications publickey
|
|
PasswordAuthentication no
|
|
StrictHostKeyChecking accept-new
|