Skip to content

Commit

Permalink
chore: update deprecated TLS directives #183
Browse files Browse the repository at this point in the history
close #183
  • Loading branch information
0xJacky committed Nov 10, 2023
1 parent 8ac5fc2 commit 82eabbf
Show file tree
Hide file tree
Showing 13 changed files with 381 additions and 320 deletions.
5 changes: 3 additions & 2 deletions README-es.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,8 +280,9 @@ map $http_upgrade $connection_upgrade {
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
server_name <your_server_name>;
Expand Down
5 changes: 3 additions & 2 deletions README-zh_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,9 @@ map $http_upgrade $connection_upgrade {
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
server_name <your_server_name>;
Expand Down
5 changes: 3 additions & 2 deletions README-zh_TW.md
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,9 @@ map $http_upgrade $connection_upgrade {
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
server_name <your_server_name>;
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 +281,9 @@ map $http_upgrade $connection_upgrade {
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
server_name <your_server_name>;
Expand Down
6 changes: 3 additions & 3 deletions docs/.vitepress/theme/styles/custom.less
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@

:root {
--vp-button-brand-border: var(--vp-c-brand-light);
--vp-button-brand-text: var(--vp-c-text-dark-1);
// --vp-button-brand-text: var(--vp-c-text-dark-1);
--vp-button-brand-bg: var(--vp-c-brand);
--vp-button-brand-hover-border: var(--vp-c-brand-light);
--vp-button-brand-hover-text: var(--vp-c-text-dark-1);
// --vp-button-brand-hover-text: var(--vp-c-text-dark-1);
--vp-button-brand-hover-bg: var(--vp-c-brand-light);
--vp-button-brand-active-border: var(--vp-c-brand-light);
--vp-button-brand-active-text: var(--vp-c-text-dark-1);
// --vp-button-brand-active-text: var(--vp-c-text-dark-1);
--vp-button-brand-active-bg: var(--vp-button-brand-bg);
}

Expand Down
5 changes: 3 additions & 2 deletions docs/guide/nginx-proxy-example.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ map $http_upgrade $connection_upgrade {
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
http2 on;
server_name <your_server_name>;
Expand Down
3 changes: 2 additions & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "nginx-ui-docs",
"packageManager": "yarn@3.5.1",
"type": "module",
"scripts": {
"docs:dev": "vitepress dev",
"docs:build": "vitepress build",
"docs:preview": "vitepress preview"
},
"dependencies": {
"vitepress": "^1.0.0-beta.1"
"vitepress": "^1.0.0-rc.25"
},
"devDependencies": {
"@types/node": "^20.1.0",
Expand Down
Loading

0 comments on commit 82eabbf

Please sign in to comment.