20 lines
481 B
Groff
20 lines
481 B
Groff
<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
|
|
|
|
Require all granted
|
|
</Directory>
|
|
</VirtualHost>
|