mirror of
https://github.com/certbot/certbot.git
synced 2026-06-03 13:59:02 -04:00
8 lines
208 B
Nginx Configuration File
8 lines
208 B
Nginx Configuration File
root c:/www;
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_pass 127.0.0.1:9123;
|
|
fastcgi_index index.php;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
include fastcgi_params;
|
|
}
|