mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 07:12:54 -04:00
11 lines
244 B
Nginx Configuration File
11 lines
244 B
Nginx Configuration File
|
|
location ~ [^/]\.php(/|$) {
|
||
|
|
fastcgi_split_path_info ^(.+?\.php)(/.*)$;
|
||
|
|
if (!-f $document_root$fastcgi_script_name) {
|
||
|
|
return 404;
|
||
|
|
}
|
||
|
|
|
||
|
|
fastcgi_pass 127.0.0.1:9000;
|
||
|
|
fastcgi_index index.php;
|
||
|
|
include fastcgi_params;
|
||
|
|
}
|