-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSSLDefault
36 lines (35 loc) · 1.16 KB
/
SSLDefault
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
server {
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
root /var/www/public;
server_name domainName;
index index.php;
ssl on;
ssl_certificate /etc/letsencrypt/live/domainName/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/domainName/privkey.pem;
ssl_session_timeout 5m;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
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;
ssl_prefer_server_ciphers off;
client_max_body_size 20m;
add_header Strict-Transport-Security "max-age=63072000" always;
ssl_stapling on;
ssl_stapling_verify on;
if (!-e $request_filename) {
rewrite ^/(.*)$ /index.php?/\$1 last;
break;
}
location / {
try_files $uri $uri/ /index.php?/$request_uri;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
}
location ~/\.ht {
deny all;
}
}