-
Notifications
You must be signed in to change notification settings - Fork 2
/
PHP-FPM-80.tpl
38 lines (33 loc) · 1.18 KB
/
PHP-FPM-80.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<VirtualHost %ip%:%web_port%>
ServerName %domain_idn%
%alias_string%
ServerAdmin %email%
DocumentRoot %docroot%
ScriptAlias /cgi-bin/ %home%/%user%/web/%domain%/cgi-bin/
Alias /vstats/ %home%/%user%/web/%domain%/stats/
Alias /error/ %home%/%user%/web/%domain%/document_errors/
#SuexecUserGroup %user% %group%
CustomLog /var/log/%web_system%/domains/%domain%.bytes bytes
CustomLog /var/log/%web_system%/domains/%domain%.log combined
ErrorLog /var/log/%web_system%/domains/%domain%.error.log
<Directory %home%/%user%/web/%domain%/stats>
AllowOverride All
</Directory>
<Directory %sdocroot%>
AllowOverride All
Options +Includes -Indexes +ExecCGI
</Directory>
# <IfModule mod_ruid2.c>
# RMode config
# RUidGid %user% %group%
# RGroups www-data
# </IfModule>
# <IfModule itk.c>
# AssignUserID %user% %group%
# </IfModule>
<FilesMatch \.php$>
SetHandler "proxy:unix:/run/php/php8.0-fpm-%domain%.sock|fcgi://localhost/"
</FilesMatch>
SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0
IncludeOptional %home%/%user%/conf/web/%web_system%.%domain%.conf*
</VirtualHost>