输入下列代码,增加虚拟域名(注:需要管理员权限)
lnmp vhost add
填写二级域名站点名称
及对应的文件夹
其他默认为空格
然后,进入/usr/local/nginx/conf/vhost配置虚拟nginx
server
{
#----------------------------------------
#include enable-php.conf;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
#-------------------------------------------------
更新
lnmp restart
网友评论