2021-10-15 18:59:01 +00:00
|
|
|
|
|
|
|
limit_req_zone $binary_remote_addr zone=rlimit:10m rate=5r/s;
|
|
|
|
|
2021-09-15 11:27:22 +00:00
|
|
|
server {
|
|
|
|
index index.html index.php;
|
|
|
|
#server_name phpfpm.local;
|
|
|
|
error_log /var/log/nginx/error.log;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
|
|
root /var/www/html/public;
|
|
|
|
|
2021-10-15 18:59:01 +00:00
|
|
|
limit_req zone=rlimit;
|
|
|
|
|
2021-09-15 11:27:22 +00:00
|
|
|
location ~ \.php$ {
|
|
|
|
try_files $uri =404;
|
|
|
|
fastcgi_split_path_info ^(.+\.php)(/.+)$;
|
|
|
|
fastcgi_pass dencode-php:9000;
|
|
|
|
fastcgi_index index.php;
|
|
|
|
include fastcgi_params;
|
|
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
|
|
fastcgi_param PATH_INFO $fastcgi_path_info;
|
|
|
|
}
|
|
|
|
}
|