local
1 | ssh-keygen -t rsa |
SSH密钥会保存在home目录下的.ssh/id_rsa文件中.SSH公钥保存在.ssh/id_rsa.pub文件中
upload key 2 server
ssh-copy-id username@remote-server
反过来
server {
listen 80;
server_name blog.guoshuang.com;
charset utf-8;
location / {
root /usr/share/nginx/html/blog;
index index.html index.htm;
}
}
Check the fingerprint for the ECDSA key sent by the remote host
添加了重复的 主机
1 | ssh-keygen -R <remote-system-ip-address> |
用CSS给SVG
https://www.w3cplus.com/svg/styling-svg-use-content-css.html
js add style
1 | var css = 'h1 { background: red; }', |
Create and append style sheets to document using JavaScript
1 | (function() { |