mirror of https://github.com/BOINC/boinc.git
- make_project: create html/ops/.htaccess;
secure admin web access by default svn path=/trunk/boinc/; revision=19013
This commit is contained in:
parent
bd8f1f20d1
commit
b631ce3fe6
|
@ -7553,3 +7553,10 @@ David 5 Sept 2009
|
|||
util.inc
|
||||
user/
|
||||
team_edit_form.php
|
||||
|
||||
David 7 Sept 2009
|
||||
- make_project: create html/ops/.htaccess;
|
||||
secure admin web access by default
|
||||
|
||||
tools/
|
||||
make_project
|
||||
|
|
|
@ -321,9 +321,6 @@ httpd_conf_template_filename = os.path.join(
|
|||
project_shortname+'.httpd.conf'
|
||||
)
|
||||
|
||||
html_user_url = options.html_user_url
|
||||
html_ops_url = options.html_ops_url
|
||||
|
||||
print >>open(httpd_conf_template_filename,'w'), '''
|
||||
|
||||
## Settings for BOINC project %(project_longname)s
|
||||
|
@ -349,6 +346,16 @@ print >>open(httpd_conf_template_filename,'w'), '''
|
|||
</Directory>
|
||||
''' %locals()
|
||||
|
||||
htaccess_filename = options.project_root+'/html/ops/.htaccess'
|
||||
htpasswd_filename = options.project_root+'/html/ops/.htpasswd'
|
||||
|
||||
print >>open(htaccess_filename, 'w'), '''
|
||||
AuthName "%(project_shortname)s"
|
||||
AuthType Basic
|
||||
AuthUserFile %(htpasswd_filename)s
|
||||
require valid-user
|
||||
'''%locals()
|
||||
|
||||
cronjob_filename = os.path.join(
|
||||
options.project_root,
|
||||
project_shortname+'.cronjob'
|
||||
|
@ -372,6 +379,9 @@ if options.test_app:
|
|||
bin/update_versions
|
||||
'''%locals()
|
||||
|
||||
html_user_url = options.html_user_url
|
||||
html_ops_url = options.html_ops_url
|
||||
|
||||
print >>open(readme_filename,'w'), '''
|
||||
Steps to complete installation:
|
||||
|
||||
|
|
Loading…
Reference in New Issue