`
zzc1684
  • 浏览: 1222986 次
  • 性别: Icon_minigender_1
  • 来自: 广州
文章分类
社区版块
存档分类
最新评论

nginx 多站点配置方法集合

阅读更多

关于nginx的多站设置,其实和apache很相似,假设我们已经有两个域名,分别是:www.websuitA.com和www.websuitB.com。并且这两个域名已经映射给了IP为192.168.1.1的服务器。

 

那么我们开始吧:
1、为我们的站点创建配置文件
  我是这么做的,在nginx的配置文件conf目录下创建一个专门存放VirtualHost的目录,命名为vhosts_conf,可以把虚拟目录的配置全部放在这里。在里面创建名为vhosts_modoupi_websuitA.conf的配置文件并打开,我们在这里做配置,往里面写:
复制代码 代码如下:

server {
listen 80;               #监听的端口号
server_name websuitA.com;        #域名
#access_log logs/host.access.log main;
location / {
root X:/wnmp/www/websuitA;    #站点的路径
index default.php index.php index.html index.htm;
#站点的rewrite在这里写
rewrite ^/(\w+)\.html$ /$1.php;
rewrite ^/(\w+)/(\w+)$ /$1/$2.php;
}
#错误页的配置
error_page 404 /error.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
root X:/wnmp/www/websuitA;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}

这样就做好了,站点A的配置,同样的方法,做websuitB的配置,这里我命名为vhosts_modoupi_websuitB.conf,直接上代码
复制代码 代码如下:

server {
     listen 80;               #监听的端口号
     server_name websuitB.com;        #域名
     #access_log logs/host.access.log main;
     location / {
        root X:/wnmp/www/websuitB;    #站点的路径
       index default.php index.php index.html index.htm;
#站点的rewrite在这里写
       rewrite ^/(\w+)\.html$ /$1.php;
       rewrite ^/(\w+)/(\w+)$ /$1/$2.php;
     }
  #错误页的配置
     error_page 404 /error.html;
     error_page 500 502 503 504 /50x.html;
     location = /50x.html {
       root html;
     }
     # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
     location ~ \.php$ {
        root X:/wnmp/www/websuitB;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
     }
     location ~ /\.ht {
        deny all;
     }
}

这样,两个站点的配置就OK了。
2、在nginx的主配置文件里,包含这两个站点的配置文件。
  我们打开conf目录下的nginx.conf文件,很容易做,只要在http{...}段输入以下代码:
复制代码 代码如下:

#包含所有的虚拟主机的配置文件
include X:/wnmp/nginx/conf/vhosts_conf/*.conf;

这样,nginx的多站点配置就做好了,怎么样打开浏览器测试一下吧~

第二种方法:
当我们有了一个 VPS 主机以后,为了不浪费 VPS 的强大资源(相比共享主机1000多个站点挤在一台机器上),往往有想让 VPS 做点什么的想法,银子不能白花啊:)。放置多个网站或者博客是个不错的想法,可是如何配置 web 服务器才能在一个 VPS 上放置多个网站/博客呢?如何通过一个 IP 访问多个站点/域名呢?这就是大多数 web 服务器支持的 virtual hosting 功能。这里将描述如何一步一步如何用 nginx 配置 virtual hosting。
nginx 是一个小巧高效的 web 服务器,由俄罗斯程序员 Igor Sysoev 开发,nginx 虽然体积小,但功能一点也不弱,能和其他的 web 服务器一样支持 virtual hosting,即一个IP对应多个域名以支持多站点访问,就像一个IP对应一个站点一样,所以是”虚拟”的。你想在一个 IP 下面放多少个站点就放多少,只要硬盘够大就行。
这里以配置2个站点(2个域名)为例,n 个站点可以相应增加调整,假设:
IP地址: 202.55.1.100
域名1 example1.com 放在 /www/example1
域名2 example2.com 放在 /www/example2
配置 nginx virtual hosting 的基本思路和步骤如下:
把2个站点 example1.com, example2.com 放到 nginx 可以访问的目录 /www/
给每个站点分别创建一个 nginx 配置文件 example1.com.conf,example2.com.conf, 并把配置文件放到 /etc/nginx/vhosts/
然后在 /etc/nginx.conf 里面加一句 include 把步骤2创建的配置文件全部包含进来(用 * 号)
重启 nginx
具体过程
下面是具体的配置过程:
1、在 /etc/nginx 下创建 vhosts 目录
1
mkdir /etc/nginx/vhosts
2、在 /etc/nginx/vhosts/ 里创建一个名字为 example1.com.conf 的文件,把以下内容拷进去
复制代码 代码如下:

server {
listen 80;
server_name example1.com www. example1.com;
access_log /www/access_ example1.log main;
location / {
root /www/example1.com;
index index.php index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /www/example1.com/$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}

3、在 /etc/nginx/vhosts/ 里创建一个名字为 example2.com.conf 的文件,把以下内容拷进去
复制代码 代码如下:

server {
listen 80;
server_name example2.com www. example2.com;
access_log /www/access_ example1.log main;
location / {
root /www/example2.com;
index index.php index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /www/example2.com/$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}

4、打开 /etc/nginix.conf 文件,在相应位置加入 include 把以上2个文件包含进来
复制代码 代码如下:

user nginx;
worker_processes 1;
# main server error log
error_log /var/log/nginx/error.log ;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
}
# main server config
http {
include mime.types;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] $request '
'"$status" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
gzip on;
server {
listen 80;
server_name _;
access_log /var/log/nginx/access.log main;
server_name_in_redirect off;
location / {
root /usr/share/nginx/html;
index index.html;
}
}
# 包含所有的虚拟主机的配置文件
include /usr/local/etc/nginx/vhosts/*;
}

5、重启 Nginx
第三种方法:
一个服务器上需要跑多个网站,如果仅仅把域名解析到server的IP是不行的,访问不同域名打开的都是nginx默认的网站。要想分别对应,需要在nginx里设置vhost。

我是用lnmp一键安装包(http://www.lnmp.org/ )安装的nginx+mysql+php环境,对于其他自己编译的nginx估计配置文件和安装目录会有所不同,自己酌情修改哦,呵呵
编辑/usr/local/nginx/conf/nginx.conf,去掉server的参数。
复制代码 代码如下:

server
{
listen 80;
server_name www.wifizoo.net;
index index.html index.htm index.php;
root /tmp/wwwroot; 本文来自
location ~ .*\.(php|php5)?$
{
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
} copyright
location /status {
stub_status on;
access_log off;
}
copyright
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}

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

log_format access '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" $http_x_forwarded_for';
access_log /home/wwwroot/logs/access.log access;
}

然后加入vhost定义: copyright
include /usr/local/nginx/vhost/*.conf;
}
再在/usr/local/nginx/建立vhost文件夹,里面创建各域名的对应配置文件。
这个简单,就把之前的server配置内容复制到创建的对应conf文件里就OK了。
复制代码 代码如下:

server
{
listen 80;
server_name www.jb51.net;
server_name jb51.net;
index index.html index.htm index.php;
root /tmp/wwwroot/meituge;

location ~ .*\.(php|php5)?$
{
fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_index index.php;
include fcgi.conf;
} copyright
location /status {
stub_status on;
access_log off;
}
copyright

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

location ~ .*\.(js|css)?$
{
expires 12h;
}
#log_format access '$remote_addr - $remote_user [$time_local] "$request" '
#'$status $body_bytes_sent "$http_referer" '
#'"$http_user_agent" $http_x_forwarded_for';
#access_log /home/wwwroot/logs/access.log access;
}

这里要注意,如果你用的是一级域名,那么需要在server配置里指定不加www前缀的域名,否则访问jb51.net会被定义到默认站点而非www.jb51.net
server_name www.jb51.net;
server_name jb51.net; 

 

分享到:
评论

相关推荐

    多域名绑定问题资料集合

    其中,虚拟主机是最常用的方法,通过配置服务器软件(如Apache、Nginx或IIS)来识别并处理不同的域名请求。 在Tomcat服务器中,多项目绑定则涉及到如何在一个Tomcat实例上部署和管理多个独立的Web应用程序。Tomcat...

    笔记资料.zip

    1. 基本配置:了解Nginx的配置文件结构,如主配置文件、站点配置文件,以及如何通过指令来配置服务器块、location块等。 2. 反向代理:学习如何设置Nginx作为反向代理,将请求转发到后端的应用服务器(如Java的...

    docker-php70\72\56版本环境

    "一键快捷添加nginx配置、绑定hosts"表明该环境提供了便捷的方法来管理Nginx配置,包括创建新站点或者修改现有配置,并且能快速将域名映射到本地容器服务,这对于开发和测试环境尤其方便。 在实际应用中,PHP70、72...

    基于PHP的落伍者站长工具集合php版Toolv1.0源码.zip

    【标题】"基于PHP的落伍者站长工具集合php版Toolv1.0源码.zip"指的是一个使用PHP编程语言开发的网站管理工具包,它主要用于帮助网站管理员进行日常的站点管理和优化工作。这个工具集合可能包含了多种实用功能,如SEO...

    MongoDB管理工具Rockmongo.pdf

    - **多主机管理**:可配置多个 MongoDB 服务器,每个服务器可设置多个管理员。 - **安全性**:登录需要管理员密码,保障数据库的安全。 - **功能丰富**:提供服务器信息查看、数据库操作、集合管理、索引管理、...

    badbots:机械手和刮板IP列表

    标题“badbots:机械手和...总的来说,这份“badbots:机械手和刮板IP列表”是网站管理员进行网络安全防护的重要参考资料,特别是对于那些使用Nginx服务器的站点,它提供了直接的IP封锁方法,有助于提升网站的安全性。

    URL伪静态的准备资料.rar

    2. **Nginx实现**:在nginx.conf或服务器块中配置rewrite规则,进行URL转换。 3. **IIS实现**:利用IIS的URL重写模块,创建重写规则。 四、URL伪静态的常见问题及解决方法 1. **404错误**:检查重写规则是否正确,...

    2024辽宁省数学建模简介及应用实例及实例分析.txt

    本实例将通过搭建一个多站点的 Nginx 服务器环境,展示其在提高网站访问速度、增强安全性等方面的强大功能。 ### 结语 通过对上述几个具体应用实例的分析,我们可以看出数学建模作为一种强大的工具,在各个领域都...

    php redis 64位window安装包

    4. **重启PHP服务**:完成扩展安装后,记得重启你的PHP服务(如Apache或Nginx),以使配置生效。 5. **测试连接**:现在可以尝试在PHP脚本中使用`redis`函数来连接Redis服务器。例如: ```php $redis = new Redis...

    phpStudy2016

    这款工具集成了多种版本的PHP(如PHP5.3, PHP5.4, PHP5.5, PHP5.6等)、MySQL数据库以及Apache、Nginx等Web服务器,使得开发者在本地就能快速构建起开发和测试环境,无需手动配置复杂的服务器环境。 在"描述"中提到...

    ansible-playbooks:其他Ansible剧本

    通过Ansible Playbook,可以轻松地在多台服务器上统一部署和更新NGINX配置。 3. **Controller剧本**:在Ansible架构中,Controller 是管理节点,负责调度任务并连接到被管理的目标主机。这里的“Controller”剧本...

    构建基于LAMP的网站架构

    构建基于LAMP的网站架构需要综合考虑服务器硬件、软件配置以及网络布局等多个方面。通过对各个组件的精心挑选与配置,可以打造出既满足当前需求又能应对未来挑战的网站平台。同时,随着技术的发展,不断优化和完善...

    Django 中文手册

    13. **部署**:如何将Django应用部署到生产环境,包括Nginx、Gunicorn、uWSGI等服务器配置。 14. **Django生态**:介绍Django的第三方库,如Django Rest Framework用于API开发,Django Channels支持WebSocket等。 ...

    软件工程师-10个超赞便利的HTML5CSS3框架推荐.docx

    它支持lighttd、Google App Engine、NodeJS,以及针对Apache、Nginx和IIS的优化服务器配置,同时显著减少了Boilerplate的大小。 2. The M Project 这是一个跨平台的手机开发框架,基于HTML5和JavaScript,具备MVC...

    新手phpcms(php学习)

    4. **phpcms安装与配置**:学习如何下载phpcms,配置环境(如Apache或Nginx服务器,PHP环境,MySQL数据库),以及安装和初始化phpcms系统。 5. **后台管理**:熟悉phpcms的后台管理界面,包括管理员登录、权限管理...

    14款经典的404错误页面

    10. **Web服务器配置**:不同的Web服务器如Apache、Nginx等,设置404错误页面的方法各异,需要根据具体服务器类型进行配置。 综上所述,404错误页面不仅是解决用户访问问题的工具,更是提升网站品质和服务的关键...

Global site tag (gtag.js) - Google Analytics