LEMPer icon indicating copy to clipboard operation
LEMPer copied to clipboard

Add vhost support for xenforo

Open chutuananh2k opened this issue 2 years ago • 0 comments
trafficstars

Xenforo vhost support

Source: https://www.nginx.com/resources/wiki/start/topics/recipes/xenforo/

Example: `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;
}

}`

chutuananh2k avatar Apr 27 '23 02:04 chutuananh2k