Skip to content

Commit 5c6cf5a

Browse files
authoredJul 7, 2022
refactor!: move basic ssl setup to external plugin, fix #8532 (#8961)
1 parent c956cf7 commit 5c6cf5a

File tree

7 files changed

+17
-544
lines changed

7 files changed

+17
-544
lines changed
 

‎docs/config/server-options.md

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ Enable TLS + HTTP/2. Note this downgrades to TLS only when the [`server.proxy` o
5555

5656
The value can also be an [options object](https://nodejs.org/api/https.html#https_https_createserver_options_requestlistener) passed to `https.createServer()`.
5757

58+
A valid certificate is needed. For a basic setup, you can add [@vitejs/plugin-basic-ssl](https://github.com/vitejs/vite-plugin-basic-ssl) to the project plugins, which will automatically create and cache a self-signed certificate. But we recommend creating your own certificates.
59+
5860
## server.open
5961

6062
- **Type:** `boolean | string`

‎docs/guide/migration.md

+13
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,19 @@ You can use `?init` which is similar to the previous behavior.
101101
})
102102
```
103103

104+
### Automatic https certificate generation
105+
106+
A valid certificate is needed when using `https`. In Vite v2, if no certificate was configured, a self-signed certificate was automatically created and cached.
107+
Since Vite v3, we recommend manually creating your certificates. If you still want to use the automatic generation from v2, this feature can be enabled back by adding [@vitejs/plugin-basic-ssl](https://github.com/vitejs/vite-plugin-basic-ssl) to the project plugins.
108+
109+
```js
110+
import basicSsl from '@vitejs/plugin-basic-ssl'
111+
112+
export default {
113+
plugins: [basicSsl()]
114+
}
115+
```
116+
104117
## Advanced
105118

106119
There are some changes which only affects plugin/tool creators.

‎packages/vite/LICENSE.md

+1-339
Large diffs are not rendered by default.

‎packages/vite/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,6 @@
101101
"micromatch": "^4.0.5",
102102
"mlly": "^0.5.4",
103103
"mrmime": "^1.0.1",
104-
"node-forge": "^1.3.1",
105104
"okie": "^1.0.1",
106105
"open": "^8.4.0",
107106
"periscopic": "^3.0.4",

‎packages/vite/src/node/certificate.ts

-169
This file was deleted.

‎packages/vite/src/node/http.ts

+1-28
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import fs, { promises as fsp } from 'node:fs'
1+
import fs from 'node:fs'
22
import path from 'node:path'
33
import type {
44
Server as HttpServer,
@@ -134,9 +134,6 @@ export async function resolveHttpsConfig(
134134
key: readFileIfExists(key),
135135
pfx: readFileIfExists(pfx)
136136
})
137-
if (!httpsOption.key || !httpsOption.cert) {
138-
httpsOption.cert = httpsOption.key = await getCertificate(cacheDir)
139-
}
140137
return httpsOption
141138
}
142139

@@ -151,30 +148,6 @@ function readFileIfExists(value?: string | Buffer | any[]) {
151148
return value
152149
}
153150

154-
async function getCertificate(cacheDir: string) {
155-
const cachePath = path.join(cacheDir, '_cert.pem')
156-
157-
try {
158-
const [stat, content] = await Promise.all([
159-
fsp.stat(cachePath),
160-
fsp.readFile(cachePath, 'utf8')
161-
])
162-
163-
if (Date.now() - stat.ctime.valueOf() > 30 * 24 * 60 * 60 * 1000) {
164-
throw new Error('cache is outdated.')
165-
}
166-
167-
return content
168-
} catch {
169-
const content = (await import('./certificate')).createCertificate()
170-
fsp
171-
.mkdir(cacheDir, { recursive: true })
172-
.then(() => fsp.writeFile(cachePath, content))
173-
.catch(() => {})
174-
return content
175-
}
176-
}
177-
178151
export async function httpServerStart(
179152
httpServer: HttpServer,
180153
serverOptions: {

‎pnpm-lock.yaml

-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.