mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
9 lines
293 B
Text
9 lines
293 B
Text
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
|
|
#
|
|
location ~ \.php$ {
|
|
root /usr/share/nginx/html;
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
include fastcgi_params;
|
|
}
|