1、编辑虚拟主机配置文件,添加以下内容<Directory/data/www/abc>AllowOverrideAuthConfigAuthName"www.test.com"AuthTypeBasicAuthUserFile/data/.htpasswdrequirevalid-user</VirtualHost>2、创建本地密码文件htpasswd-c/data/.htpasswduser1如果要创建新用户则取..
分类:
Web程序 时间:
2016-05-24 17:09:34
阅读次数:
207
1、修改虚拟主机配置文件vim/usr/local/apache2/conf/extra/httpd-vhosts.conf2、增加一个不存在内容的目录<VirtualHost*:80>DocumentRoot"/tmp/123"ServerNamewww.1111.com</VirtualHost>3、创建目录mkdir/tmp/abc4、修改本地hosts文件增加一行10.10.13.247www.11..
分类:
Web程序 时间:
2016-05-24 17:06:16
阅读次数:
167
第一步,打开apache/conf/extra文件夹下的httpd-vhosts.conf 第二步,添加如下代码 <VirtualHost *:80> ServerAdmin myself.plug.com DocumentRoot "d:\workspace\cbec-v2\amin\web" # ...
一:Apache\conf\extra\httpd-vhost.conf 虚拟目录配置文件添加两个站点<VirtualHost *:80># ServerAdmin webmaster@dummy-host.example.com DocumentRoot "C:/www/w1" ServerNam ...
分类:
其他好文 时间:
2016-05-14 11:30:00
阅读次数:
210
Apache虚拟主机 Redhat Enterprise Linux (包括 CentOS Linux), 是使用最广的 Linux 服务器, 大量的网站应用都部署在其上. 1. 打开文件 /etc/httpd/conf/httpd.conf, 搜索 VirtualHost example, 找到代 ...
分类:
Web程序 时间:
2016-05-02 13:06:59
阅读次数:
159
打开xampp的安装目录,找到 apache\conf\extra 路径下的 httpd-vhosts.conf 文件 打开注释 NameVirtualHost *:80这句很重要,我就是忘记打开它,结果无论host里配置的什么网址都指向htdoc的根目录添加站点配置: <VirtualHost * ...
分类:
其他好文 时间:
2016-04-25 13:07:01
阅读次数:
149
分主机部署lamphttpd主机:192.168.152.140php-fpm主机:192.168.152.141mariadb主机:192.168.152.142httpdyum-yinstallhttpdvim/etc/httpd/conf.d/vhosts.confAddTypeapplication/x-httpd-php.php
DirectoryIndexindex.phpindex.html
<VirtualHost*:80>
ServerNamewww...
分类:
其他好文 时间:
2016-04-23 15:07:05
阅读次数:
377
顺手记录一下,NameVirtualHost*:80<VirtualHost_default_:80>DocumentRoot"/var/www/html"</VirtualHost><VirtualHost*:80>ServerNamewww.abc.comDocumentRoot"/var/www/html/abc"<Directory/var/www/html/abc>OptionsIndexesFollowSymLinksAllowOver..
分类:
其他好文 时间:
2016-04-14 06:58:02
阅读次数:
1009
1:修改windows中的hosts文件192.168.2.20phpadmin.test.com2:配置/etc/httpd/httpd-vhosts.conf<VirtualHost*:80>DocumentRoot"/vhost/phpadmin"ServerNamephpadmin.test.com#ServerAlias.com#ErrorLog"logs/test_error_log"#CustomLog"logs/test_access_log"combined&l..
分类:
Web程序 时间:
2016-04-09 01:51:49
阅读次数:
564
Nginx 是一个轻量级高性能的 Web 服务器, 并发处理能力强, 对资源消耗小, 无论是静态服务器还是小网站, Nginx 表现更加出色, 作为 Apache 的补充和替代使用率越来越高. 我在《Apache 虚拟主机 VirtualHost 配置》介绍了在不同操作系统上使用 Apahce 虚拟 ...
分类:
其他好文 时间:
2016-04-08 14:40:08
阅读次数:
161