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>
    

      

  • 相关阅读:
    DDD 领域驱动设计-谈谈 Repository、IUnitOfWork 和 IDbContext 的实践
    UVA10071 Back to High School Physics
    UVA10071 Back to High School Physics
    UVA10055 Hashmat the Brave Warrior
    UVA10055 Hashmat the Brave Warrior
    UVA458 The Decoder
    UVA458 The Decoder
    HDU2054 A == B ?
    HDU2054 A == B ?
    POJ3414 Pots
  • 原文地址:https://www.cnblogs.com/adtuu/p/4723521.html
Copyright © 2011-2022 走看看