Skip to content

Commit d4bf828

Browse files
authored
Merge pull request #234 from usegalaxy-ca/feature/anonymous-users
Allow anonymous users
2 parents 5c0fc79 + 931e1af commit d4bf828

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

ansible/group_vars/galaxyservers.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,12 @@ galaxy_job_config:
4242
pulsar_runner:
4343
load: galaxy.jobs.runners.pulsar:PulsarRESTJobRunner
4444
limits:
45-
-
45+
# Limit on the number of jobs an anonymous user can have active across all environments.
46+
# no jobs at all. Condition use >= and the query would return 0 on the first job.
47+
- type: anonymous_user_concurrent_jobs
48+
value: -1
4649
# Limit on the number of jobs a user with a registered Galaxy account can have active across all environments.
47-
type: registered_user_concurrent_jobs
50+
- type: registered_user_concurrent_jobs
4851
value: 10
4952
# Limit total jobs running on the galaxy server (upload, etc)
5053
- type: environment_total_concurrent_jobs
@@ -157,7 +160,7 @@ galaxy_config:
157160
# Users login (CILogon OIDC and No login/password)
158161
show_welcome_with_login: false
159162
allow_user_creation: false
160-
require_login: true
163+
require_login: false
161164
session_duration: 40000
162165
use_remote_user: false
163166
auth_config_file: "{{ galaxy_config_dir }}/auth_conf.xml"

0 commit comments

Comments
 (0)