source: trunk/INSTALL/rhel/6/etc/httpd/conf.d/expresso.conf @ 5797

Revision 5797, 691 bytes checked in by wmerlotto, 12 years ago (diff)

Ticket #2557 - Primeira versao do novo instalador do Expresso

  • Property svn:executable set to *
Line 
1#
2<VirtualHost _default_:80>
3    ServerAdmin expresso-admin@DOMAIN
4
5    DocumentRoot /var/www/html/expresso
6
7    HostnameLookups Off
8    UseCanonicalName Off
9    ServerSignature Off
10
11    <Directory /var/www/html/expresso/>
12        Options FollowSymLinks MultiViews
13        # Para permitir o uso do .htaccess
14        AllowOverride All
15        Order allow,deny
16        allow from all
17    </Directory>
18
19    # Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
20    LogLevel warn
21    ErrorLog logs/expresso-error_log
22    CustomLog logs/expresso-access_log combined
23
24    RewriteEngine on
25    RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
26    RewriteRule .* - [F]
27</VirtualHost>
Note: See TracBrowser for help on using the repository browser.