美文网首页
lnmp添加二级域名

lnmp添加二级域名

作者: 骆旺达 | 来源:发表于2020-07-23 20:30 被阅读0次

输入下列代码,增加虚拟域名(注:需要管理员权限)

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

相关文章

网友评论

      本文标题:lnmp添加二级域名

      本文链接:https://www.haomeiwen.com/subject/edfxlktx.html