背景:
阅读新闻
基于Nginx的虚拟主机的配置
[日期:2013-03-13] 来源:Linux社区 作者:lymrg [字体:]
基于Nginx的虚拟主机的配置
安装pcre
tar -xvf pcre-8.32.tar.gz
cd pcre-8.32
./configure
make;make install
安装nginx
首先创建一个nginx用户,以nginx用户来运行nginx
useradd nginx
tar -xvf nginx-1.2.7.tar.gz
cd nginx-1.2.7
./configure --user=nginx --group=nginx
--prefix=/usr/local/nginx/ --with-http_stub_status_module --with-http_ssl_module
make;make install
启动nginx时提示:error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory
解决方法:
32位系统 [root@sever lib]# ln -s /usr/local/lib/libpcre.so.1 /lib
64位系统 [root@sever lib]# ln -s /usr/local/lib/libpcre.so.1 /lib64
启动时提示:nginx: [emerg] getpwnam("nginx --group=nginx") failed
解决方法:
把nginx配置文件中的user改为编译时指定的用户即可
1.配置基于主机名的虚拟主机
vi /etc/hosts
192.168.183.138
192.168.183.138
echo "www.test.com" > /web/test/index.html
echo "www.a.org" > /web/test/index.html
修改nginx的配置文件,添加两段主机配置
server {
listen 80;
server_name ;
location / {
root /web/test/;
index index.html index.htm;
}
}
server {
listen 80;
server_name ;
location / {
root /web/a/;
index index.html index.htm;
}
}
root用来指定网页根目录
配置文件检测
[root@localhost ~]# /usr/local/nginx/sbin/nginx -t
nginx: the configuration file /usr/local/nginx//conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx//conf/nginx.conf test is successful
启动nginx /usr/local/nginx/sbin/nginx
测试:
相关资讯 Nginx配置 Nginx配置虚拟主机
本文评论 查看全部评论 (0)
尊重网上道德,遵守中华人民共和国的各项有关法律法规 承担一切因您的行为而直接或间接导致的民事或刑事法律责任 本站管理人员有权保留或删除其管辖留言中的任意内容 本站有权在网站内转载或引用您的评论 参与本评论即表明您已经阅读并接受上述条款
评论声明
最新资讯