]> jfr.im git - uguu.git/blobdiff - README.md
Update README.md
[uguu.git] / README.md
index 8d413d898617ee7994f3512b98c21b50ea0765cb..43d2bcad830663186e07f1da4849c68f7f245a50 100644 (file)
--- a/README.md
+++ b/README.md
@@ -126,13 +126,13 @@ Main domain:
 ```
 server{
     
-    listen             443 ssl;
+    listen             443 ssl http2;
     server_name                www.yourdomain.com yourdomain.com;
 
     ssl on;
     ssl_certificate /path/to/fullchain.pem;
     ssl_certificate_key /path/toprivkey.pem;
-    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;    
+    ssl_protocols TLSv1.2 TLSv1.3;   
 
     root /path/to/uguu/dist/;
     autoindex          off;
@@ -157,14 +157,14 @@ server{
 Subdomain serving files (do not enable PHP here):
 ```
 server{
-    listen          443 ssl;
+    listen          443 ssl http2;
     server_name     www.subdomain.serveryourfiles.com subdomain.serveryourfiles.com;
 
     ssl on;
     ssl_certificate /path/to/fullchain.pem;
     ssl_certificate_key /path/to/privkey.pem;
-    ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
-    
+    ssl_protocols TLSv1.2 TLSv1.3;
+        
     root            /path/where/uploaded/files/are/stored/;
     autoindex       off;
     access_log     off;