27 lines
781 B
ApacheConf
27 lines
781 B
ApacheConf
# default permissions
|
|
allow from all
|
|
|
|
# uncomment this to take the website offline
|
|
# RedirectMatch ^.*$ http://appdb.winehq.org/site_outage.html
|
|
|
|
# Set Our Default Directory Index
|
|
DirectoryIndex index.php
|
|
|
|
# 404 not found document
|
|
ErrorDocument 404 http://www.winehq.org/site/404
|
|
|
|
# Modify the PHP configuration (global vars, etc.)
|
|
php_value register_globals 0
|
|
php_value short_open_tag 0
|
|
php_value register_long_arrays 0
|
|
php_value magic_quotes_gpc 0
|
|
php_flag zlib.output_compression on
|
|
|
|
# make sure gc_probability is non-zero, we want php to take care of
|
|
# session cleanup for us
|
|
php_value session.gc_probability 1
|
|
|
|
# lower the probability of calling garbage collection
|
|
# the appdb gets so many hits we want to increase the divisor above 100
|
|
php_value session.gc_divisor 2000
|