Created
May 21, 2014 04:55
-
-
Save katzueno/735a5ac6ab4db17bb2c3 to your computer and use it in GitHub Desktop.
concrete5 multisite single core setting for Apache
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Alias "[RELATIVE PATH OF CONCRETE FOLDER]" "[FULL SERVER PATH TO YOUR CONCRETE5 CORE]" | |
<Directory [FULL SERVER PATH TO EACH WEB AREA]> | |
<IfModule sapi_apache2.c> | |
php_admin_value open_basedir "[FULL SERVER PATH TO EACH WEB AREA]:[FULL SERVER PATH TO YOUR CONCRETE5 CORE]:/tmp" | |
</IfModule> | |
<IfModule mod_php5.c> | |
php_admin_value open_basedir "[FULL SERVER PATH TO EACH WEB AREA]:[FULL SERVER PATH TO YOUR CONCRETE5 CORE]:/tmp" | |
</IfModule> | |
</Directory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Alias "/concrete" "/var/www/concrete5/" | |
<Directory /var/www/vhost/EXAMPLE.COM/httpdocs> | |
<IfModule sapi_apache2.c> | |
php_admin_value open_basedir "/var/www/vhost/EXAMPLE.COM/httpdocs:/var/www/concrete5/:/tmp" | |
</IfModule> | |
<IfModule mod_php5.c> | |
php_admin_value open_basedir "/var/www/vhost/EXAMPLE.COM/httpdocs:/var/www/concrete5/:/tmp" | |
</IfModule> | |
</Directory> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment