18 lines
448 B
Plaintext
18 lines
448 B
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin foo@bar.org
|
|
DocumentRoot WEB_ROOT
|
|
php_admin_value upload_tmp_dir /tmp
|
|
|
|
<Directory WEB_ROOT>
|
|
DirectoryIndex index.php
|
|
AllowOverride all
|
|
Order allow,deny
|
|
Allow from all
|
|
|
|
# PHP's server values can be spoofed or incorrect if an
|
|
# Apache instance is behind a proxy, so set these here
|
|
UseCanonicalName On
|
|
UseCanonicalPhysicalPort On
|
|
</Directory>
|
|
</VirtualHost>
|