首先打开并编辑nginx.conf 文件,该文件存放路径可以通过 find / -name nginx.conf 查询。
下面介绍 nginx.conf 中的操作。
打开后,我们先确定server要在http模块里,如:
http{
server{
}
}
以下是实例操作:
server{
/*监听80端口*/
listen 80;
/*绑定域名,多个域名的绑定,用空格分开*/
server_name 域名1 域名2;
/*默认读取的文件名,这个你懂的*/
index index.html index.php index.htm ;
/*绑定的虚拟目录*/
root /var/www/html;
/*这个location是把所有关于后缀为php的请求交给php-fastcgi处理*/
location ~ .*.php$
{
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
}
}
/*配置下一个域名*/
server{
………..
}
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。