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

updates for 3.1 #227

Merged
merged 5 commits into from
Feb 20, 2024
Merged
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
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
max-parallel: 4
matrix:
image:
- 'centos:7'
- 'centos:8'
- 'rockylinux:8'
- 'rockylinux:9'
Expand Down
25 changes: 25 additions & 0 deletions defaults/main/.ondemand.yml → defaults/main/ondemand.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,28 @@
# - profile: "team1"
# title: "Team 1"
# icon: "fas://user"

files_enable_shell_button: true
bc_dynamic_js: false
bc_clean_old_dirs: false
bc_clean_old_dirs_days: 30
host_based_profiles: false
disable_bc_shell: false
cancel_session_enabled: false

# module_file_dir: null
# user_settings_file: ~/.config/ondemand/settings.yml
# facl_domain: null
# auto_groups_filter: null

bc_simple_auto_accounts: false
remote_files_enabled: false
remote_files_validation: false
upload_enabled: true
download_enabled: true
hide_app_version: false

# globus_endpoints: null
# google_analytics_tag_id: null

motd_render_html: false
27 changes: 27 additions & 0 deletions molecule/default/fixtures/config/ood_portal.yml.custom.apache2
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -163,6 +170,26 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
custom_vhost_directives:
- '<Location "/test">'
- ' SetEnv SPECIAL_PATH /foo/bin'
- '</Location>'

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
custom_location_directives:
- 'SetEnv SPECIAL_PATH /foo/bin'

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
27 changes: 27 additions & 0 deletions molecule/default/fixtures/config/ood_portal.yml.custom.httpd
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -163,6 +170,26 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
custom_vhost_directives:
- '<Location "/test">'
- ' SetEnv SPECIAL_PATH /foo/bin'
- '</Location>'

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
custom_location_directives:
- 'SetEnv SPECIAL_PATH /foo/bin'

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -163,6 +170,26 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
custom_vhost_directives:
- '<Location "/test">'
- ' SetEnv SPECIAL_PATH /foo/bin'
- '</Location>'

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
custom_location_directives:
- 'SetEnv SPECIAL_PATH /foo/bin'

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
23 changes: 23 additions & 0 deletions molecule/default/fixtures/config/ood_portal.yml.default.apache2
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -161,6 +168,22 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_vhost_directives: []

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_location_directives: []

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
23 changes: 23 additions & 0 deletions molecule/default/fixtures/config/ood_portal.yml.default.httpd
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -161,6 +168,22 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_vhost_directives: []

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_location_directives: []

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -161,6 +168,22 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_vhost_directives: []

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_location_directives: []

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
23 changes: 23 additions & 0 deletions molecule/default/fixtures/config/ood_portal.yml.oidc.apache2
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -162,6 +169,22 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_vhost_directives: []

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_location_directives: []

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
23 changes: 23 additions & 0 deletions molecule/default/fixtures/config/ood_portal.yml.oidc.httpd
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -162,6 +169,22 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_vhost_directives: []

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_location_directives: []

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
23 changes: 23 additions & 0 deletions molecule/default/fixtures/config/ood_portal.yml.oidc.httpd24-httpd
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ port: 80
# Default: null (no SSL support)
# Default: null (no SSL support)

# Disable logging entirely. With this you can have custom log directives
# in a seperate configuration file.
# Example:
# disable_logs: true
# Default: false (logs are enabled)
#disable_logs: false

# Root directory of log files (can be relative ServerRoot)
# Example:
# logroot: '/path/to/my/logs'
Expand Down Expand Up @@ -162,6 +169,22 @@ auth:
- 'RequestHeader unset Authorization'
- 'Require valid-user'

# List of custom apache directives to apply to the entire vhost.
# Note this is an array of strings.
# Example:
# custom_vhost_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_vhost_directives: []

# List of custom apache directives to apply to the Locations.
# Note this is an array of strings.
# Example:
# custom_location_directives:
# - 'SetEnv SPECIAL_ENV_VAR custom'
# Default: [] (no custom directives)
#custom_location_directives: []

# Redirect user to the following URI when accessing root URI
# Example:
# root_uri: '/my_uri'
Expand Down
Loading
Loading