AlternC/etc/alternc/templates/apache2/vhost.conf

18 lines
579 B
Plaintext
Raw Normal View History

<VirtualHost *:80>
ServerName %%fqdn%%
DocumentRoot "%%document_root%%"
2012-08-21 18:25:56 +00:00
AssignUserId #%%UID%% #%%GID%%
SetEnv LOGIN "%%UID%%-%%LOGIN%%"
<Directory "%%document_root%%">
2012-08-23 08:15:32 +00:00
php_admin_value open_basedir "%%account_root%%:/usr/share/php/"
2013-02-28 12:56:24 +00:00
php_admin_value upload_tmp_dir %%account_root%%/tmp
php_admin_value sendmail_path '/usr/lib/alternc/sendmail "%%mail_account%%" '
php_admin_flag mail.add_x_header on
Options +MultiViews -FollowSymLinks +SymLinksIfOwnerMatch
AllowOverride AuthConfig FileInfo Limit Options Indexes
</Directory>
</VirtualHost>
2012-08-21 18:25:56 +00:00