俗话说,好记性不如烂笔头,那么好吧,就再记一次,便于以后查阅。
这里只是一个简单的配置样例。
关于apache的更多配置请自行查阅。
apache虚拟主机vhost配置样例如下:
<virtualhost 127.0.0.1:80> ServerName www.server110.com ServerAlias www.server110.com DirectoryIndex index.html index.php DocumentRoot "D:some-directory" <directory "D:some-directory"> Allow from all Options Indexes FollowSymLinks AllowOverride all </directory> #子目录 Alias /sub "D:another-directory" <directory "D:another-directory"> Allow from all </directory> #反向代理,如配置solr指向另外一台服务器 ProxyPass /solr http://www.other.com/solr ProxyPassReverse /solr http://www.other.com/solr ErrorLog "logs/error.log" CustomLog "logs/access.log" common </virtualhost>
|
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。