X-Git-Url: https://jfr.im/git/uguu.git/blobdiff_plain/3b00fd9cfcc9abc6c3e3d7dc78351fcabdc61c9b..1a56b2f431258a0b801c89b49c758f2c5d1dcc10:/README.md diff --git a/README.md b/README.md index 1075863..43d2bca 100644 --- 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; @@ -144,32 +144,27 @@ 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; + 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;