making taskotron artifacts into a real template and allowing subdirs of artifacts/all
This commit is contained in:
parent
6679e8ac19
commit
753f379953
1 changed files with 11 additions and 3 deletions
|
@ -1,11 +1,19 @@
|
||||||
Alias /artifacts /srv/taskotron/artifacts
|
Alias /artifacts {{ public_artifacts_dir }}
|
||||||
<Directory "/srv/taskotron/artifacts">
|
<Directory "{{ public_artifacts_dir }}">
|
||||||
Options +Indexes
|
Options +Indexes
|
||||||
IndexOptions +NameWidth=*
|
IndexOptions +NameWidth=*
|
||||||
AllowOverride None
|
AllowOverride None
|
||||||
Require all granted
|
Require all granted
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
<Directory "/srv/taskotron/artifacts/all">
|
<Directory "{{ public_artifacts_dir }}/all">
|
||||||
Options -Indexes
|
Options -Indexes
|
||||||
</Directory>
|
</Directory>
|
||||||
|
|
||||||
|
<DirectoryMatch "^{{ public_artifacts_dir }}/all/(.+)/">
|
||||||
|
Options +Indexes
|
||||||
|
IndexOptions +NameWidth=*
|
||||||
|
AllowOverride None
|
||||||
|
Require all granted
|
||||||
|
</DirectoryMatch>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue