make_project: Fix path location issue

This commit is contained in:
Rom Walton 2015-11-17 01:07:39 -05:00
parent 503b94a4f6
commit 75d4091d14
1 changed files with 4 additions and 4 deletions

View File

@ -331,8 +331,8 @@ print >>open(httpd_conf_template_filename,'w'), '''
## Settings for BOINC project %(project_longname)s
Alias /%(project_shortname)s/download %(proot)s/download
Alias /%(project_shortname)s/stats %(proot)s/stats
Alias /%(project_shortname)s/user_profile %(proot)s/user_profile
Alias /%(project_shortname)s/stats %(proot)s/html/stats
Alias /%(project_shortname)s/user_profile %(proot)s/html/user_profile
Alias /%(project_shortname)s %(proot)s/html/user
Alias /%(project_shortname)s_ops %(proot)s/html/ops
@ -360,12 +360,12 @@ print >>open(httpd_conf_template_filename,'w'), '''
Order allow,deny
Allow from all
</Directory>
<Directory "%(proot)s/stats">
<Directory "%(proot)s/html/stats">
RemoveType .php .phtml
Order allow,deny
Allow from all
</Directory>
<Directory "%(proot)s/user_profile">
<Directory "%(proot)s/html/user_profile">
RemoveType .php .phtml
Order allow,deny
Allow from all