Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add storage for ross and expose it #1108

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions templates/galaxy/config/file_sources_conf.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -236,3 +236,11 @@
token: ${user.preferences['gitlabfs|read_access_token']}
server_url: "https://git.nfdi4plants.org"
writable: true

- type: posix
root: '/data/jwd/jbrowse2/'
id: jbrowse2_store
doc: Storage of JBrowse2 instance for EBP
label: EBP JBrowse2
requires_groups: ebp-test
writable: true
4 changes: 4 additions & 0 deletions templates/nginx/galaxy-main.j2
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,10 @@ server {
root /opt;
}

location /ebp-jbrowse {
alias /data/jwd/jbrowse2;
autoindex on;
}

location /static/vgcn {
expires 24h;
Expand Down
Loading