#ssl_protocols TLSv1 TLSv1.1 TLSv1.2; #ssl_ciphers EECDH+CHACHA20:EECDH+AES128:RSA+AES128:EECDH+AES256:RSA+AES256:!MD5; #ssl_prefer_server_ciphers on; server { # listen 443 ssl default_server; # ssl_certificate /etc/nginx/ssl/2018-2020-Asteriks-MisterCertified-Com-Certificate.txt; # ssl_certificate_key /etc/nginx/ssl/2018-2020-Apache-Exported-Server.key; listen 80 default_server; listen [::]:80 default_server; server_name my.mistercertified.com; access_log /var/log/nginx/https-my.mistercertified.com/access.log; error_log /var/log/nginx/https-my.mistercertified.com/error.log; root /srv/www/my.mistercertified.com/https; client_max_body_size 4G; keepalive_timeout 5; location / { index index.html index.htm index.php; } location ~ \.php$ { include /etc/nginx/fastcgi_params; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_read_timeout 900; } }