merge-requests/2/head
Matthew 2022-08-30 20:39:51 -04:00
parent 5b548eec04
commit 6dcb343c97
No known key found for this signature in database
GPG Key ID: 210AF32ADE3B5C4B
1 changed files with 8 additions and 6 deletions

View File

@ -13,12 +13,14 @@ server {
error_log /var/log/nginx/hr_error.log;
location / {
try_files $uri $uri/ /index.php?$uri&$args;
}
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
try_files $uri $uri/ /index.php?$query_string;
}
location ~ ^/(.+\.php)$ {
try_files $uri =404;
fastcgi_pass unix:/run/php/php7.2-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
include /etc/nginx/fastcgi_params;
}
}