1 nginx配置域名 server_name listen 90 2 redis 集合添加元素方法 SADD key value 3 apache配置域名 ServerName www.fdfdf.com ServerAlias www.fdsfdsf.com VirtualHost *:80 4 ...
分类:
其他好文 时间:
2017-10-31 16:45:23
阅读次数:
136
1启用虚拟主机配置httpd.conf文件下includeconf/extra/httpd-vhosts.conf开启2配置httpd-vhost.conf//监听端口,NameVirtualHost如果没有这个,<VirtualHost>标签就没什么作用NameVirtualHost*:80<VirtualHost*:80>
ServerNametest1.com
DocumentRoot/var/www/html..
分类:
Web程序 时间:
2017-10-30 21:16:35
阅读次数:
232
一、配置httpd.conf# Virtual hosts#Include conf/extra/httpd-vhosts.conf //取消这一行的# 二、配置httpd-vhosts.conf文件 1.多IP模式<VirtualHost *:80> DocumentRoot "E:/www/ht ...
分类:
Web程序 时间:
2017-10-29 11:05:53
阅读次数:
273
实验准备:1、准备三个站点页面2、准备三个IP地址一、实现基于ip的虚拟主机1、修改httpd服务的配置文件/etc/httpd/conf/httpd.conf<virtualhost192.168.35.13:80>
documentroot/app/site1
</virtualhost>
<virtualhost192.168.35.14:80>
documentroot/app/s..
分类:
Web程序 时间:
2017-10-24 11:22:10
阅读次数:
191
Nginx 是一个轻量级高性能的 Web 服务器, 并发处理能力强, 对资源消耗小, 无论是静态服务器还是小网站, Nginx 表现更加出色, 作为 Apache 的补充和替代使用率越来越高. 我在《Apache 虚拟主机 VirtualHost 配置》介绍了在不同操作系统上使用 Apahce 虚拟 ...
分类:
其他好文 时间:
2017-10-11 20:25:45
阅读次数:
178
第一步:先在httpd-vhosts.conf设置好虚拟域名localhost <VirtualHost _default_:80> DocumentRoot "C:\phpStudy\WWW" ServerName localhost </VirtualHost> 第二步:@很重要 把httpd. ...
分类:
Web程序 时间:
2017-10-04 15:51:22
阅读次数:
248
在安装Apache后,配置了几个虚拟主机,但是重启Apache时有几个警告: [warn]_default_ VirtualHost overlap on port 80, the first has precedence 这是怎么回事?又该怎么解决? 在安装Apache后,配置了几个虚拟主机,但是 ...
分类:
其他好文 时间:
2017-10-01 12:13:14
阅读次数:
145
1. 修改Apache的配置文件httpd.conf LoadModule ssl_module modules/mod_ssl.so Include conf/extra/httpd-ssl.conf 把前面的#号都去掉 2. 在httpd-ssl.conf文件添加 <VirtualHost te ...
分类:
Web程序 时间:
2017-09-30 21:57:44
阅读次数:
247
<VirtualHost *:80> ServerAdmin webmaster@host.example.com DocumentRoot "/web/webdata/pc" ServerName www.test.com ErrorLog "logs/www.test.com-error_log ...
分类:
Web程序 时间:
2017-09-15 21:35:38
阅读次数:
158
apache下的vhosts文件修改<VirtualHost*:80>
ServerAdmintest.jkxt.com//域名
DocumentRoot"D:/xampp/htdocs/jkxt"//项目地址
ServerNametest.jkxt.com
ErrorLog"logs/dummy-host2.example.com-error.log"
CustomLog"logs/dummy-host2.example.com-access.log"common
<..
分类:
Web程序 时间:
2017-09-08 11:59:50
阅读次数:
152