-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This adds tls-v1-3 on port 1013, similar to how other protocol subdomains are implemented. Also adds the test to the dashboard.
- Loading branch information
Szilárd Pfeiffer
committed
Feb 18, 2021
1 parent
0afed64
commit 5c611a8
Showing
5 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
--- | ||
--- | ||
server { | ||
listen 80; | ||
server_name tls-v1-3.{{ site.domain }}; | ||
|
||
return 301 https://$server_name:1013$request_uri; | ||
} | ||
|
||
server { | ||
listen 443; | ||
server_name tls-v1-3.{{ site.domain }}; | ||
|
||
include {{ site.serving-path }}/nginx-includes/wildcard-normal.conf; | ||
include {{ site.serving-path }}/nginx-includes/tls-defaults.conf; | ||
|
||
return 301 https://$server_name:1013$request_uri; | ||
} | ||
|
||
server { | ||
listen 1013; | ||
server_name tls-v1-3.{{ site.domain }}; | ||
|
||
include {{ site.serving-path }}/nginx-includes/wildcard-normal.conf; | ||
include {{ site.serving-path }}/nginx-includes/tls-v1-3.conf; | ||
include {{ site.serving-path }}/common/common.conf; | ||
|
||
root {{ site.serving-path }}/domains/protocol/tls-v1-3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
subdomain: tls-v1-3 | ||
layout: page | ||
favicon: green | ||
background: green | ||
--- | ||
|
||
<div id="content"> | ||
<h1 style="font-size: 12vw;"> | ||
{{ page.subdomain }}.<br>{{ site.domain }} | ||
</h1> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
--- | ||
|
||
ssl_session_timeout 5m; | ||
|
||
ssl_protocols TLSv1.3; | ||
ssl_ciphers 'TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256'; |