博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
unbuntu apahce 2 设置 多域名
阅读量:6713 次
发布时间:2019-06-25

本文共 1862 字,大约阅读时间需要 6 分钟。

1.找到apache2 的设置路径

默认的apache的路径为/etc/apache2/

 

2. 修改httpd.conf

本文192.168.0.1 为自己的服务器的ip,下面一样的意思

ServerName 192,168.0.1:80

NameVirtualHost 192,168.0.1.166

 

3. 修改 /etc/apache2/sites-available/default文件 此文件为第一个网站的域名绑定信息

Servername qq.com ServerAdmin webmaster@localhost DocumentRoot /var/www
Options FollowSymLinks #AllowOverride None AllowOverride ALL
Options Indexes FollowSymLinks MultiViews #AllowOverride None AllowOverride ALL Order allow,deny allow from all ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all
ErrorLog ${APACHE_LOG_DIR}/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access.log combined Alias /doc/ "/usr/share/doc/"
Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128

 

4. 增加新的域名的配置信息/etc/apache2/sites-available/test

Servername appask.cn ServerAdmin webmaster@localhost DocumentRoot /var/www/testaaaaa
Options FollowSymLinks #AllowOverride None AllowOverride ALL
Options Indexes FollowSymLinks MultiViews #AllowOverride None AllowOverride ALL Order allow,deny allow from all
ErrorLog ${APACHE_LOG_DIR}/error_app.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog ${APACHE_LOG_DIR}/access_app.log combined

  

5. 执行 sudo a2ensite test 在sites-enable可以看到多了一个指向test的软链接

 

6.重启apache2 : service apache2 restart

 

一切就Ok了

 

转载地址:http://zlhlo.baihongyu.com/

你可能感兴趣的文章
定时任务框架Quartz的新玩法
查看>>
段前缀的使用(0504)
查看>>
.NET Framework 源码
查看>>
开源大数据周刊-第6期
查看>>
centos上一键安装jdk、tomcat脚本
查看>>
排序算法 时间、空间复杂度
查看>>
flex容器主轴上的部分元素单独设置位置
查看>>
window10安装Ubuntu虚拟机踩坑系列
查看>>
JavaScript倒计时
查看>>
ArrayList源码分析
查看>>
golang后端库gin笔记
查看>>
Vuex源码学习(四)module与moduleCollection
查看>>
【OC梳理】description
查看>>
张家口a货翡翠,梧州a货翡翠
查看>>
JS Object的静态方法汇总( 上 )
查看>>
java B2B2C Springcloud多租户电子商城系统-Eureka服务端与客户端常用配置
查看>>
jvm疯狂吞占内存,罪魁祸首是谁?
查看>>
表格存储Tablestore权威指南(持续更新)
查看>>
java B2B2C源码电子商城系统-Kafka快速入门
查看>>
Spring Cloud云服务 - HongHu架构common-service 项目构建过程
查看>>