brunorojo
(usa Debian)
Enviado em 16/05/2008 - 15:54h
ServerRoot "/usr/local/apachephp"
Listen 8980
LoadModule php5_module modules/libphp5.so
<IfModule !mpm_netware_module>
User daemon
Group daemon
</IfModule>
ServerAdmin you@example.com
ServerName atendimento:8080
DocumentRoot "/usr/local/apachephp/htdocs"
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>
<Directory "/usr/local/apachephp/htdocs">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule dir_module>
DirectoryIndex index.html
</IfModule>
<FilesMatch "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</FilesMatch>
ErrorLog logs/error_log
LogLevel warn
<IfModule log_config_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
<IfModule logio_module>
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
</IfModule>
CustomLog logs/access_log common
</IfModule>
<IfModule alias_module>
ScriptAlias /cgi-bin/ "/usr/local/apachephp/cgi-bin/"
</IfModule>
<IfModule cgid_module>
</IfModule>
<Directory "/usr/local/apachephp/cgi-bin">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
DefaultType text/plain
<IfModule mime_module>
TypesConfig conf/mime.types
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
</IfModule>
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Listen *:8180
<VirtualHost *:8180>
ServerName gam.empresa.com.br
DocumentRoot /data/www/dynamic/gam/
AddType application/x-httpd-php .php
<Directory "/data/www/dynamic/gam">
DirectoryIndex index.html index.php
Allow from all
Options +Includes
AllowOverride AuthConfig
</Directory>
Alias /nosecure /data/www/dynamic/gam2/nosecure/
<Directory "/data/www/dynamic/gam2/nosecure">
Allow from all
</Directory>
</VirtualHost>
Listen *:8280
<VirtualHost *:8280>
ServerName phpmyadmin.empresa.com.br
DocumentRoot /data/www/dynamic/phpmyadmin/
AddType application/x-httpd-php .php
<Directory "/data/www/dynamic/phpmyadmin">
DirectoryIndex index.html index.php
Allow from all
Options +Includes
</Directory>
</VirtualHost>
Listen *:8380
<VirtualHost *:8380>
ServerName dotproject.empresa.com.br
DocumentRoot /data/www/dynamic/dotproject/
AddType application/x-httpd-php .php
<Directory "/data/www/dynamic/dotproject">
DirectoryIndex index.html index.php
Allow from all
Options +Includes
</Directory>
</VirtualHost>
Listen *:8480
<VirtualHost *:8480>
ServerName gam.empresa.com.br
DocumentRoot /data/www/dynamic/gam_digital/
AddType application/x-httpd-php .php
<Directory "/data/www/dynamic/gam_digital">
DirectoryIndex index.html index.php
Allow from all
Options +Includes
AllowOverride AuthConfig
</Directory>
Alias /nosecure /data/www/dynamic/gam2_digital/nosecure/
<Directory "/data/www/dynamic/gam2_digital/nosecure">
Allow from all
</Directory>
</VirtualHost>
Listen *.8580
<VirtualHost *:8580>
ServerName gq.empresa.com.br
DocumentRoot /data/www/dynamic/qualidade/
AddType application/x-httpd-php .php
<Directory "/data/www/dynamic/qualidade">
DirectoryIndex index.html index.php login.php login_page.php
Allow from all
Options +Includes
AllowOverride AuthConfig
</Directory>
Alias /nosecure /data/www/dynamic/qualidade/nosecure/
<Directory "/data/www/dynamic/qualidade/nosecure">
Allow from all
</Directory>
</VirtualHost>