]> jfr.im git - uguu.git/blobdiff - README.md
Update README.md
[uguu.git] / README.md
index c155b3a632393e34f5c19394e655f75bb5fd87e5..d2f8fd488dc840e28fea21864a7a9fef223d524d 100644 (file)
--- a/README.md
+++ b/README.md
@@ -132,7 +132,7 @@ server{
     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;
@@ -144,23 +144,18 @@ server{
     }
 
     location ~* \.php$ {
-       fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
-        fastcgi_intercept_errors on;
-        fastcgi_index index.php;
-        fastcgi_split_path_info ^(.+\.php)(.*)$;
-        include fastcgi_params;
-        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+    fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
+    fastcgi_intercept_errors on;
+    fastcgi_index index.php;
+    fastcgi_split_path_info ^(.+\.php)(.*)$;
+    include fastcgi_params;
+    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
     }
-
-        error_page 404 /4041x.html;
-        error_page 403 /4041x.html;
-        location /4041x.html {
-        root /home/neku/www;
-      }
 }
-´´´
+```
+
 Subdomain serving files (do not enable PHP here):
-´´´
+```
 server{
     listen          443 ssl;
     server_name     www.subdomain.serveryourfiles.com subdomain.serveryourfiles.com;
@@ -168,14 +163,14 @@ server{
     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;
     index           index.html;
 }
-´´´
+```
 
 To redirect HTTP to HTTPS make a config for each domain like so:
 ```
@@ -184,7 +179,7 @@ server {
     server_name www.domain.com domain.com; 
     return 301 https://domain.com$request_uri;
 }
-´´´
+```
 
 ## API
 To upload using curl or make a tool you can post using: