linux下配置虚拟主机

来源:互联网 发布:淘宝短信链接 编辑:程序博客网 时间:2024/05/01 18:56
<VirtualHost *:80>
 DocumentRoot /var/www/html
 ServerName demo.example.com
<Directory "/var/www/html/secret">
AuthName "Secret Place"
AuthType basic
AuthUserFile /etc/httpd/htpasswd
require valid-user
</Directory>
原创粉丝点击