mirror of
https://github.com/hoellen/dockerfiles.git
synced 2025-04-21 21:09:17 +00:00
7 lines
206 B
Plaintext
7 lines
206 B
Plaintext
location ~ \.php$ {
|
|
fastcgi_index index.php;
|
|
fastcgi_pass unix:/php/run/php-fpm.sock;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
include /nginx/conf/fastcgi_params;
|
|
}
|