lnmp手动新建虚拟机

Posted 狂奔的蜗牛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lnmp手动新建虚拟机相关的知识,希望对你有一定的参考价值。

1.在home/wwwroot/zhongjie   新建zhongjie文件夹

2.在usr/local/nginx/conf/vhost/zhongjie.conf    新建配置文件zhongjie.conf配置文件

代码如下

server
    {
        listen 99;  #1.访问端口
        #listen [::]:80;
        server_name _;
        index index.html index.htm index.php default.html default.htm default.php;
        root  /home/wwwroot/zhongjie;  # 2.指向目录

        include other.conf;
        #error_page   404   /404.html;

        # Deny access to PHP files in specific directory
        #location ~ /(wp-content|uploads|wp-includes|images)/.*\.php$ { deny all; }

        include enable-php.conf;

        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
        {
            expires      30d;
        }

        location ~ .*\.(js|css)?$
        {
            expires      12h;
        }

        location ~ /.well-known {
            allow all;
        }

        location ~ /\.
        {
            deny all;
        }

        access_log  /home/wwwlogs/zhongjie.log;  #3.生成日志文件
    }

 

(此代码参考lnmp默认的nginx.conf)

 

然后重启服务器

nginx -s reload  :修改配置后重新加载生效

以上是关于lnmp手动新建虚拟机的主要内容,如果未能解决你的问题,请参考以下文章

新建虚拟机7步

利用虚拟机模拟搭建LNMP架构

lnmp虚拟机安全配置研究

Win10 VirtualBox虚拟机搭建lnmp环境

在虚拟机上用nginx怎么搭建lnmp

lnmp1.3一键包安装后添加虚拟机