-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
265 lines (178 loc) · 6.99 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title></title>
<meta name="viewport" content="width=device-width,minimum-scale=1">
<meta name="description" content="">
<meta name="generator" content="Hugo 0.145.0">
<meta name="robots" content="index, follow">
<link rel="stylesheet" href="/ananke/css/main.min.d05fb5f317fcf33b3a52936399bdf6f47dc776516e1692e412ec7d76f4a5faa2.css" >
<link href="/index.xml" rel="alternate" type="application/rss+xml" title="" />
<link href="/index.xml" rel="feed" type="application/rss+xml" title="" />
<link rel="canonical" href="/">
<meta property="og:url" content="/">
<meta property="og:locale" content="en">
<meta property="og:type" content="website">
<meta itemprop="datePublished" content="2025-03-31T11:49:18-07:00">
<meta itemprop="dateModified" content="2025-03-31T11:49:18-07:00">
<meta name="twitter:card" content="summary">
</head><body class="ma0 avenir bg-near-white production">
<header>
<div class="pb3-m pb6-l bg-black">
<nav class="pv3 ph3 ph4-ns" role="navigation">
<div class="flex-l justify-between items-center center">
<a href="/" class="f3 fw2 hover-white no-underline white-90 dib">
</a>
<div class="flex-l items-center">
<div class="ananke-socials"></div>
</div>
</div>
</nav>
<div class="tc-l pv3 ph3 ph4-ns">
<h1 class="f2 f-subheadline-l fw2 light-silver mb0 lh-title">
</h1>
</div>
</div>
</header>
<main class="pb7" role="main">
<article class="cf ph3 ph5-l pv3 pv4-l f4 tc-l center measure-wide lh-copy mid-gray">
</article>
<div class="pa3 pa4-ns w-100 w-70-ns center">
<section class="w-100 mw8">
<div class="relative w-100 mb4">
<article class="bb b--black-10">
<div class="db pv4 ph3 ph0-l no-underline dark-gray">
<div class="flex flex-column flex-row-ns">
<div class="blah w-100">
<h1 class="f3 fw1 athelas mt0 lh-title">
<a href="/posts/develop-multi-pages-websit/" class="color-inherit dim link">
Develop Multi Pages Websit
</a>
</h1>
<div class="f6 f5-l lh-copy nested-copy-line-height nested-links">
在Mac上使用VUE + Vite开发多页面网站,并部署到Nginx上。
</div>
<a href="/posts/develop-multi-pages-websit/" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">read more</a>
</div>
</div>
</div>
</article>
</div>
<div class="relative w-100 mb4">
<article class="bb b--black-10">
<div class="db pv4 ph3 ph0-l no-underline dark-gray">
<div class="flex flex-column flex-row-ns">
<div class="blah w-100">
<h1 class="f3 fw1 athelas mt0 lh-title">
<a href="/posts/ssh-intro/" class="color-inherit dim link">
Ssh Intro
</a>
</h1>
<div class="f6 f5-l lh-copy nested-copy-line-height nested-links">
<h1 id="ssh配置与使用">SSH配置与使用</h1>
<h2 id="1-ssh是什么">1 SSH是什么</h2>
<p>SSH(Secure Shell Protocol)是一种加密的网络传输协议。</p>
<h2 id="2-基本用法">2 基本用法</h2>
<h3 id="2x-config配置">2.x config配置</h3>
<table>
<thead>
<tr>
<th style="text-align: center">配置项</th>
<th style="text-align: left">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td style="text-align: center">Host</td>
<td style="text-align: left">对其他的声明项做分组。</td>
</tr>
<tr>
<td style="text-align: center">HostName</td>
<td style="text-align: left">指明登录的服务器真实域名。</td>
</tr>
<tr>
<td style="text-align: center">User</td>
<td style="text-align: left">指明登录HostName使用的用户名。</td>
</tr>
<tr>
<td style="text-align: center">IdentityFile</td>
<td style="text-align: left">指明User登录HostName时,使用的密钥位置。</td>
</tr>
</tbody>
</table>
<p>如下是一个示例:</p>
<pre tabindex="0"><code>Host github.com
HostName github.com
User user1
IdentityFile ~/.ssh/id_rsa
Host anotherHost
HostName github.com
User user2
IdentityFile ~/.ssh/id_rsa_user2
</code></pre><h2 id="3-原理">3 原理</h2>
<h2 id="4-github使用场景">4 Github使用场景</h2>
</div>
<a href="/posts/ssh-intro/" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">read more</a>
</div>
</div>
</div>
</article>
</div>
<div class="relative w-100 mb4">
<article class="bb b--black-10">
<div class="db pv4 ph3 ph0-l no-underline dark-gray">
<div class="flex flex-column flex-row-ns">
<div class="blah w-100">
<h1 class="f3 fw1 athelas mt0 lh-title">
<a href="/posts/update-share-app/" class="color-inherit dim link">
更新与分发Docker镜像(2)
</a>
</h1>
<div class="f6 f5-l lh-copy nested-copy-line-height nested-links">
如何更新Docker镜像?如果推送Docker镜像到镜像仓库?
</div>
<a href="/posts/update-share-app/" class="ba b--moon-gray bg-light-gray br2 color-inherit dib f7 hover-bg-moon-gray link mt2 ph2 pv1">read more</a>
</div>
</div>
</div>
</article>
</div>
</section>
<section class="w-100">
<h1 class="f3">More</h1>
<h2 class="f5 fw4 mb4 dib mr3">
<a href="/posts/docker-get-started/" class="link black dim">
Docker入门(1)
</a>
</h2>
<h2 class="f5 fw4 mb4 dib mr3">
<a href="/posts/git-ssh-key/" class="link black dim">
Git SSH Key
</a>
</h2>
<h2 class="f5 fw4 mb4 dib mr3">
<a href="/posts/best-practices-in-api-design/" class="link black dim">
API设计的最佳实践[翻译]
</a>
</h2>
<h2 class="f5 fw4 mb4 dib mr3">
<a href="/posts/deploy-hugo-by-github/" class="link black dim">
通过Github部署Hugo
</a>
</h2>
</section>
</div>
</main>
<footer class="bg-black bottom-0 w-100 pa3" role="contentinfo">
<div class="flex justify-between">
<a class="f4 fw4 hover-white no-underline white-70 dn dib-ns pv2 ph3" href="/" >
©
</a>
<div><div class="ananke-socials"></div>
</div>
</div>
</footer>
</body>
</html>