mirror of
https://github.com/certbot/certbot.git
synced 2026-07-27 08:09:10 +02:00
19 lines
368 B
Nginx Configuration File
19 lines
368 B
Nginx Configuration File
server {
|
|
|
|
server_name localhost;
|
|
|
|
root html/xenforo;
|
|
index index.php index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.php?$uri&$args;
|
|
}
|
|
|
|
location ~ \.php$ {
|
|
fastcgi_pass 127.0.0.1:9000;
|
|
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
|
|
include fastcgi_params;
|
|
}
|
|
|
|
}
|