You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
976 B
31 lines
976 B
## |
|
## apache.vhost -- Apache Virtual Host Configuration Template |
|
## ______________________________________________________ |
|
## |
|
## PLEASE DO NOT EDIT THIS TEMPLATE!! COPY IT TO "apache.vhost-xxx", |
|
## REMOVE THIS COMMENT AND EDIT THAT FILE INSTEAD, PLEASE! |
|
## ______________________________________________________ |
|
## |
|
|
|
<VirtualHost localhost:80> |
|
# server information |
|
ServerName www.foo.com |
|
ServerAlias www.foo.net www.foo.org |
|
ServerAdmin webmaster@foo.com |
|
ServerSignature on |
|
|
|
# document area |
|
DocumentRoot /cw/libexec/poweradmin/htdocs/ |
|
<Directory "/cw/libexec/poweradmin/htdocs/"> |
|
Options Indexes FollowSymlinks |
|
AllowOverride None |
|
Order allow,deny |
|
Allow from all |
|
DirectoryIndex index.php |
|
</Directory> |
|
<Directory "/cw/libexec/poweradmin/htdocs/inc/"> |
|
Order deny,allow |
|
Deny from all |
|
</Directory> |
|
</VirtualHost> |
|
|
|
|