make_project: revert change that doesn't work with Apache 2.2

This commit is contained in:
David Anderson 2013-09-17 23:13:49 -07:00
parent 2a2c9c4ad8
commit 34933c8cd6
2 changed files with 7 additions and 2 deletions

7
db/schema_condor.sql Normal file
View File

@ -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);

View File

@ -321,7 +321,6 @@ print >>open(httpd_conf_template_filename,'w'), '''
<Directory "%(proot)s/html">
Options Indexes FollowSymlinks MultiViews
AllowOverride AuthConfig
Require all granted
Order allow,deny
Allow from all
</Directory>
@ -329,7 +328,6 @@ print >>open(httpd_conf_template_filename,'w'), '''
<Directory "%(proot)s/cgi-bin">
Options ExecCGI
AllowOverride AuthConfig
Require all granted
Order allow,deny
Allow from all
</Directory>