mirror of
https://github.com/certbot/certbot.git
synced 2026-04-04 16:46:29 -04:00
10 lines
244 B
Nginx Configuration File
10 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;
|
|
}
|