mirror of https://github.com/BOINC/boinc.git
make_project: revert change that doesn't work with Apache 2.2
This commit is contained in:
parent
2a2c9c4ad8
commit
34933c8cd6
|
@ -0,0 +1,7 @@
|
||||||
|
create table batch_file_assoc (
|
||||||
|
job_file_id integer not null,
|
||||||
|
batch_id integer not null
|
||||||
|
) engine=InnoDB;
|
||||||
|
|
||||||
|
alter table batch_file_assoc
|
||||||
|
add unique(job_file_id, batch_id);
|
|
@ -321,7 +321,6 @@ print >>open(httpd_conf_template_filename,'w'), '''
|
||||||
<Directory "%(proot)s/html">
|
<Directory "%(proot)s/html">
|
||||||
Options Indexes FollowSymlinks MultiViews
|
Options Indexes FollowSymlinks MultiViews
|
||||||
AllowOverride AuthConfig
|
AllowOverride AuthConfig
|
||||||
Require all granted
|
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Allow from all
|
Allow from all
|
||||||
</Directory>
|
</Directory>
|
||||||
|
@ -329,7 +328,6 @@ print >>open(httpd_conf_template_filename,'w'), '''
|
||||||
<Directory "%(proot)s/cgi-bin">
|
<Directory "%(proot)s/cgi-bin">
|
||||||
Options ExecCGI
|
Options ExecCGI
|
||||||
AllowOverride AuthConfig
|
AllowOverride AuthConfig
|
||||||
Require all granted
|
|
||||||
Order allow,deny
|
Order allow,deny
|
||||||
Allow from all
|
Allow from all
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
Loading…
Reference in New Issue