zoukankan      html  css  js  c++  java
  • Apache多站点设定

    多端口

    vi httpd.conf
    Listen 8090
    <VirtualHost *:8090>
      ServerName  localhost
      Documentroot  "/Users/dir/8090"
    </virtualHost>
    <Directory "/Users/dir/8090">
        Options Indexes FollowSymLinks
        AllowOverride None
        Order allow,deny
        Allow from all
    </Directory>
    

    另外一种方式

    vhost设定
    
    http.conf
    <Directory />
    
        AllowOverride none
    
        #Require all denied
    
    </Directory>
    
    加载vhost.conf
    
    
    vhost.conf 
    <VirtualHost *:80>
        #ServerAdmin webmaster@dummy-host2.example.com
        DocumentRoot "/Users/zhoutingze/project/maturi/maturi/docroot/web"
        ServerName adtuu-project.com
        ServerAlias www.adtuu-project.com
        #ErrorLog "logs/dummy-host2.example.com-error_log"
        #CustomLog "logs/dummy-host2.example.com-access_log" common
    </VirtualHost>
    
    <Directory "/Users/zhoutingze/project/maturi/maturi/docroot/web">
           Options Indexes FollowSymLinks Includes ExecCGI
           AllowOverride All
           Order allow,deny
           Allow from all
    </Directory>
    
    
    
    <VirtualHost *:80>
        #ServerAdmin webmaster@dummy-host2.example.com
        DocumentRoot "/Users/zhoutingze/webroot"
        ServerName adtuu-server.com
        ServerAlias www.adtuu-server.com
        #ErrorLog "logs/dummy-host2.example.com-error_log"
        #CustomLog "logs/dummy-host2.example.com-access_log" common
    </VirtualHost>
    
    <Directory "/Users/zhoutingze/webroot">
           Options Indexes FollowSymLinks Includes ExecCGI
           AllowOverride All
           Order allow,deny
           Allow from all
    </Directory>
    
    
    
    
    
    # Virtual Hosts
    #
    # Required modules: mod_log_config
    
    # If you want to maintain multiple domains/hostnames on your
    # machine you can setup VirtualHost containers for them. Most configurations
    # use only name-based virtual hosts so the server doesn't need to worry about
    # IP addresses. This is indicated by the asterisks in the directives below.
    #
    # Please see the documentation at 
    # <URL:http://httpd.apache.org/docs/2.4/vhosts/>
    # for further details before you try to setup virtual hosts.
    #
    # You may use the command line option '-S' to verify your virtual host
    # configuration.
    
    #
    # VirtualHost example:
    # Almost any Apache directive may go into a VirtualHost container.
    # The first VirtualHost section is used for all requests that do not
    # match a ServerName or ServerAlias in any <VirtualHost> block.
    #
    <VirtualHost *:80>
        #ServerAdmin webmaster@dummy-host2.example.com
        DocumentRoot "/Users/zhoutingze/project/maturi/maturi/docroot/web"
        ServerName adtuu-project.com
        ServerAlias www.adtuu-project.com
        #ErrorLog "logs/dummy-host2.example.com-error_log"
        #CustomLog "logs/dummy-host2.example.com-access_log" common
    </VirtualHost>
    
    <Directory "/Users/zhoutingze/project/maturi/maturi/docroot/web">
           Options Indexes FollowSymLinks Includes ExecCGI
           AllowOverride All
           Order allow,deny
           Allow from all
    </Directory>
    
    
    
    <VirtualHost *:80>
        #ServerAdmin webmaster@dummy-host2.example.com
        DocumentRoot "/Users/zhoutingze/webroot"
        ServerName adtuu-server.com
        ServerAlias www.adtuu-server.com
        #ErrorLog "logs/dummy-host2.example.com-error_log"
        #CustomLog "logs/dummy-host2.example.com-access_log" common
    </VirtualHost>
    
    <Directory "/Users/zhoutingze/webroot">
           Options Indexes FollowSymLinks Includes ExecCGI
           AllowOverride All
           Order allow,deny
           Allow from all
    </Directory>
    

      

  • 相关阅读:
    IBM WebSphere MQ 7.5基本用法
    IBM WebSphere MQ介绍安装以及配置服务详解
    Windows平台上使用Github搭建Git服务器的图文教程
    Git安装和TortoiseGit详细使用教程【基础篇】
    DOS命令之at命令详解
    单元测试数据库 -- 使用事物回滚测试
    VS中实时获取SVN的版本号并写入到AssemblyInfo.cs中
    SQL2008中Merge的用法
    VS版本号定义、规则和相关的Visual Studio插件
    JSON字符串互相转换的三种方式和性能比较
  • 原文地址:https://www.cnblogs.com/adtuu/p/4723521.html
Copyright © 2011-2022 走看看