1
0
mirror of https://github.com/serghey-rodin/vesta.git synced 2025-03-12 04:36:25 -07:00

45 lines
1.4 KiB
Smarty
Raw Normal View History

2013-08-05 11:08:33 +03:00
<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/
2015-10-21 20:10:00 +03:00
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
2013-08-05 11:08:33 +03:00
<Directory %home%/%user%/web/%domain%/stats>
AllowOverride All
</Directory>
<IfModule mod_ruid2.c>
RMode config
RUidGid %user% %group%
2013-11-04 23:41:49 +02:00
RGroups apache
2013-08-05 11:08:33 +03:00
</IfModule>
<IfModule itk.c>
AssignUserID %user% %group%
</IfModule>
2015-10-21 20:10:00 +03:00
<IfModule mod_wsgi.c>
WSGIDaemonProcess apx-idea user=%user% group=%user% processes=1 threads=5 display-name=%{GROUP} python-path=%home%/%user%/web/%domain%/private/django/%domain%/env/lib/python2.6/site-packages
WSGIProcessGroup apx-idea
WSGIApplicationGroup %{GLOBAL}
</IfModule>
<Directory %docroot%>
AllowOverride FileInfo
Options ExecCGI Indexes
MultiviewsMatch Handlers
Options +FollowSymLinks
Order allow,deny
Allow from all
</Directory>
2013-08-05 11:08:33 +03:00
Include %home%/%user%/conf/web/%web_system%.%domain%.conf*
2013-08-05 11:08:33 +03:00
</VirtualHost>