zoukankan      html  css  js  c++  java
  • MAC OSX 自带Apache 配置及使用

    mac自带的Apache安装目录 /etc/apache2/

    (/etc 实际是指向 /private/etc )

    配置文件: /private/etc/apache2/httpd-conf

    修改默认端口httpd.conf下面,找到 Listen 80

    修改web根目录 httpd.conf下面 DocumentRoot “……”

    虚拟主机

    首先将httpd.conf下的 Include /private/etc/apache2/extra/httpd-vhosts.conf,这一行前面的#去掉

    然后在 /private/etc/apache2/extra/httpd-vhosts.conf 文件中添加:

    <VirtualHost *:80>
        DocumentRoot "/path/to/your/webroot/"
        ServerName  www.example
    </VirtualHost> 

    重启apache:

    sudo apachectl restart

    关闭apache:

    sudo apachectl stop

    开启apache:

    sudo apachectl start

    实际apachectl 指向的是/usr/sbin/apachectl

    查看当前版本

     httpd -v

    喜欢的话,请点赞,转发、收藏、评论,谢谢!
  • 相关阅读:
    Binary Search Tree Iterator 解答
    Invert Binary Tree 解答
    Min Stack 解答
    Trapping Raining Water 解答
    Candy 解答
    Jump Game II 解答
    Implement Hash Map Using Primitive Types
    Gas Station 解答
    Bucket Sort
    HashMap 专题
  • 原文地址:https://www.cnblogs.com/johnjackson/p/11319411.html
Copyright © 2011-2022 走看看