码迷,mamicode.com
首页 > Web开发 > 详细

Apache2.4 新virtualhost

时间:2015-01-20 11:54:19      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:

创建配置文件

/etc/apache2/sites-available# sudo nano mysite.conf
<VirtualHost *:8000>
  #ServerName hello.djangoserver
  DocumentRoot /www2
  <Directory /www2> 
    #DirectoryIndex testMain.html
    Options Indexes FollowSymLinks
    Require all granted
  </Directory>
</VirtualHost>

启用配置

cd /etc/apache2/sites-available
sudo a2ensite mysite
sudo service apache2 reload

监听端口

cd /etc/apache2
sudo nano ports.conf
Listen 8000

 

Apache2.4 新virtualhost

标签:

原文地址:http://www.cnblogs.com/manhua/p/4235553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!