35 lines
937 B
Plaintext
35 lines
937 B
Plaintext
|
<Virtualhost *:80>
|
||
|
ServerName %%fqdn%%
|
||
|
AssignUserId #%%UID%% #%%GID%%
|
||
|
SetEnv LOGIN "%%UID%%-%%LOGIN%%"
|
||
|
|
||
|
KeepAlive Off
|
||
|
|
||
|
RewriteEngine On
|
||
|
RewriteCond %{REQUEST_FILENAME} !/cgi-bin/
|
||
|
RewriteRule ^/(.*)$ https://%%fqdn%%/$1 [R=301,L]
|
||
|
|
||
|
</Virtualhost>
|
||
|
<VirtualHost *:443>
|
||
|
ServerName %%fqdn%%
|
||
|
DocumentRoot "%%document_root%%"
|
||
|
AssignUserId #%%UID%% #%%GID%%
|
||
|
SetEnv LOGIN "%%UID%%-%%LOGIN%%"
|
||
|
|
||
|
<Directory "%%document_root%%">
|
||
|
php_admin_value open_basedir "%%account_root%%:/usr/share/php/"
|
||
|
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>
|
||
|
|
||
|
SSLEngine On
|
||
|
SSLCertificateFile %%CRT%%
|
||
|
SSLCertificateKeyFile %%KEY%%
|
||
|
%%CHAINLINE%%
|
||
|
|
||
|
</VirtualHost>
|
||
|
|