LNMP

Posted xzy-blog

tags:

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

 

1.1.1 创建www用户

useradd -s /sbin/nologin -M www

 

1.1.2 编译安装(三部曲)

./configure --prefix=/application/nginx-1.10.2 --user=www --group=www --with-http_stub_status_module  --with-http_ssl_module

make  && make  install

 

1.1.3 创建软链接

ln  -s  /application/nginx-1.10.2  /application/nginx

 

1.1.4 修改配置文件

vim /application/nginx/conf/nginx.conf

server {

     listen       80;

     server_name  blog.xzy.org;

     location / {

         root   html;

         index  index.html index.htm;

     }

 

1.1.5 启动相关(启动、关闭、重启)

检查配置文件

/application/nginx/sbin/nginx -t

启动

/application/nginx/sbin/nginx

平滑重启、关闭

/application/nginx/sbin/nginx -s  reload | stop

 

 

1.2 测试

以上是关于LNMP的主要内容,如果未能解决你的问题,请参考以下文章

搭建LNMP架构服务

Ubuntu 18.04服务端搭建nextcloud(免费开源的私有网盘)