1
0
mirror of https://github.com/thib8956/nginx-proxy synced 2025-08-24 08:21:55 +00:00

tests: virtual proto

This commit is contained in:
Nicolas Duchon
2025-01-18 21:45:39 +01:00
parent a25b7ea1ef
commit 34a33a2255
6 changed files with 172 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
server {
listen 443 ssl;
server_name web1.nginx-proxy.tld;
ssl_certificate /etc/nginx/certs/server.crt;
ssl_certificate_key /etc/nginx/certs/server.key;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_prefer_server_ciphers off;
ssl_ciphers 'ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305';
location / {
default_type text/plain;
return 200 'This is web1.nginx-proxy.tld';
}
}