-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnginxssl
54 lines (37 loc) · 1.08 KB
/
nginxssl
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
server {
listen 80;
server_name [[DOMAIN]];
return 301 https://[[DOMAIN]]$request_uri;
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
ssl on;
ssl_certificate /etc/ssl/[[DOMAIN]].pem;
ssl_certificate_key /etc/ssl/[[DOMAIN]].key;
ssl_protocols TLSv1.2 TLSv1.1 TLSv1;
root /var/www/html/[[DIRECTORY]]/public;
index index.php index.html index.htm;
server_name [[DOMAIN]];
location / {
try_files $uri $uri/ /index.php?$args;
}
sendfile off;
client_max_body_size 100m;
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_intercept_errors off;
fastcgi_buffer_size 16k;
fastcgi_buffers 4 16k;
fastcgi_connect_timeout 300;
fastcgi_send_timeout 300;
fastcgi_read_timeout 300;
}
location ~ /\.ht {
deny all;
}
}