Skip to content

Commit

Permalink
revert: add must staple flag for certificate obtaining request #292
Browse files Browse the repository at this point in the history
  • Loading branch information
0xJacky committed Mar 14, 2024
1 parent 1cdd2f9 commit 817eee3
Show file tree
Hide file tree
Showing 8 changed files with 50 additions and 49 deletions.
2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions app/.idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
"@vue/shared": "^3.4.13",
"@vueuse/core": "^10.7.2",
"ant-design-vue": "4.1.2",
"apexcharts": "^3.45.1",
"axios": "^1.6.5",
"apexcharts": "^3.46.0",
"axios": "^1.6.7",
"dayjs": "^1.11.10",
"highlight.js": "^11.9.0",
"lodash": "^4.17.21",
Expand All @@ -33,8 +33,8 @@
"vue-github-button": "https://github.com/0xJacky/vue-github-button",
"vue-router": "^4.2.5",
"vue3-ace-editor": "2.2.4",
"vue3-apexcharts": "^1.4.4",
"vue3-gettext": "^3.0.0-beta.3",
"vue3-apexcharts": "^1.5.2",
"vue3-gettext": "^3.0.0-beta.4",
"vuedraggable": "^4.1.0",
"xterm": "^5.3.0",
"xterm-addon-attach": "^0.9.0",
Expand Down
72 changes: 37 additions & 35 deletions app/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion app/src/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"2.0.0-beta.17","build_id":119,"total_build":323}
{"version":"2.0.0-beta.18","build_id":120,"total_build":324}
2 changes: 1 addition & 1 deletion app/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version":"2.0.0-beta.17","build_id":119,"total_build":323}
{"version":"2.0.0-beta.18","build_id":120,"total_build":324}
6 changes: 1 addition & 5 deletions app/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,7 @@ export default defineConfig(({ mode }) => {
],
},
plugins: [
vue({
script: {
defineModel: true,
},
}),
vue(),
vueJsx(),

vitePluginBuildId(),
Expand Down
5 changes: 2 additions & 3 deletions internal/cert/cert.go
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,8 @@ func IssueCert(payload *ConfigPayload, logChan chan string, errChan chan error)
user.Registration = reg

request := certificate.ObtainRequest{
Domains: domain,
Bundle: true,
MustStaple: true,
Domains: domain,
Bundle: true,
}

l.Println("[INFO] [Nginx UI] Obtaining certificate")
Expand Down

0 comments on commit 817eee3

Please sign in to comment.