Linux-LNMP-Nginx的配置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux-LNMP-Nginx的配置相关的知识,希望对你有一定的参考价值。
nginx默认虚拟主机配置
Nginx源码包安装的配置文件/usr/local/nginx/conf/nginx.conf
注释掉server{},增加http{include vhost/*.conf;}
mkdir /usr/local/nginx/conf/vhost
vim /usr/local/nginx/conf/vhost/apeng.com.conf
server { listen 80 default_server; server_name apeng.com; index index.html index.htm index.php; root /data/wwwroot/default; }
mkdir -p /data/wwwroot/default
vim /data/wwwroot/default/index.html
/usr/local/nginx/sbin/nginx -t
/usr/local/nginx/sbin/nginx -s reload
curl localhost
以上是关于Linux-LNMP-Nginx的配置的主要内容,如果未能解决你的问题,请参考以下文章